/* ═══════════════════════════════════════════════════════════════
   IMOBIUS THEME — Main Stylesheet
   Baseado no estilo Propeble: Dark premium, amarelo accent
   Tipografia: Inter Tight (headings) + Inter (body)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ───────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--avanx-font-body);
    font-weight: 400;
    font-size: var(--avanx-body-size, 16px);
    line-height: 1.6;
    color: var(--avanx-text);
    background-color: var(--avanx-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.03em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--avanx-accent);
    text-decoration: none;
    transition: color 200ms ease-out, opacity 200ms ease-out;
}

a:hover {
    color: var(--avanx-primary);
    opacity: 0.9;
}

/* ─── Utilities ──────────────────────────────────────────────── */
.avanx-container {
    width: 100%;
    max-width: var(--avanx-content-max-width, 1200px);
    margin: 0 auto;
    padding: 0 30px;
}

.avanx-container--narrow {
    max-width: 800px;
}

.avanx-section {
    padding: 100px 0;
    text-align: var(--avanx-text-align, left);
}

.avanx-section--alt {
    background-color: rgba(255, 255, 255, 0.03);
}

.avanx-section__header {
    text-align: center;
    margin-bottom: 56px;
}

[style*="text-align"] .avanx-section__header {
    text-align: inherit;
}

.avanx-section__title {
    font-family: var(--avanx-font-heading);
    font-size: clamp(2rem, 4vw, var(--avanx-heading-size, 48px));
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.avanx-section__subtitle {
    font-size: var(--avanx-subtitle-size, 1rem);
    color: var(--avanx-text);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.avanx-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--avanx-font-body);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out, background-color 200ms ease-out;
    text-decoration: none;
    line-height: 1;
    letter-spacing: -0.02em;
}

.avanx-btn:hover {
    transform: translateY(-2px);
}

.avanx-btn:active {
    transform: translateY(0);
}

.avanx-btn--primary {
    background-color: var(--avanx-accent);
    color: var(--avanx-dark);
    box-shadow: 0 4px 16px rgba(var(--avanx-accent-rgb), 0.25);
}

.avanx-btn--primary:hover {
    background-color: #EAE640;
    color: var(--avanx-dark);
    box-shadow: 0 8px 24px rgba(var(--avanx-accent-rgb), 0.4);
}

.avanx-btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.avanx-btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.avanx-btn--accent {
    background-color: var(--avanx-accent);
    color: var(--avanx-dark);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(var(--avanx-accent-rgb), 0.3);
}

.avanx-btn--accent:hover {
    box-shadow: 0 8px 28px rgba(var(--avanx-accent-rgb), 0.5);
    color: var(--avanx-dark);
}

.avanx-btn--sm {
    padding: 10px 18px;
    font-size: 0.8125rem;
}

.avanx-btn--lg {
    padding: 16px 36px;
    font-size: 0.9375rem;
}

.avanx-btn--full {
    width: 100%;
    justify-content: center;
}

/* ─── Grid ───────────────────────────────────────────────────── */
.avanx-grid {
    display: grid;
    gap: 24px;
}

.avanx-grid--3 {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}

/* ─── Header ─────────────────────────────────────────────────── */
.avanx-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(29, 34, 39, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background-color 300ms ease, box-shadow 300ms ease;
}

.avanx-header--scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    background: rgba(29, 34, 39, 0.98);
}

.avanx-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.avanx-header__logo a,
.avanx-header__brand {
    font-family: var(--avanx-font-heading);
    font-size: 1.375rem;
    color: var(--header-text-color, #ffffff);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.avanx-header__logo img {
    max-height: 36px;
    width: auto;
}

.avanx-header__nav {
    display: flex;
}

.avanx-header__menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.avanx-header__menu li a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--header-text-color, rgba(255, 255, 255, 0.7));
    transition: color 200ms ease-out;
    padding: 4px 0;
    position: relative;
    letter-spacing: -0.02em;
}

.avanx-header__menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--avanx-accent);
    transition: width 200ms ease-out;
    border-radius: 1px;
}

.avanx-header__menu li a:hover {
    color: var(--header-text-color, #ffffff);
    opacity: 1;
    filter: brightness(1.3);
}

.avanx-header__menu li a:hover::after {
    width: 100%;
}

.avanx-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avanx-header__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--header-text-color, rgba(255, 255, 255, 0.7));
}

.avanx-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 9999999;
    position: relative;
}

.avanx-header__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 200ms ease, opacity 200ms ease;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.avanx-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--avanx-dark);
    background-size: cover;
    background-position: center center;
    margin-top: 84px;
    padding-top: 0;
    border-radius: 0 0 10px 10px;
    margin-left: 30px;
    margin-right: 30px;
    overflow: hidden;
}

/* Hero — Fullscreen variant */
.avanx-hero--fullscreen {
    margin: 0;
    padding-top: 72px;
    border-radius: 0;
    min-height: 100vh;
}

.avanx-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(54, 62, 71, 0.6) 0%,
        rgba(29, 34, 39, 0.7) 100%
    );
    mix-blend-mode: multiply;
}

/* Hero background image — rendered as <img> for real object-position control */
.avanx-hero__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.avanx-hero__slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.avanx-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.avanx-hero__slide--active {
    opacity: 1;
}

.avanx-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 24px;
    max-width: 800px;
    width: 100%;
}

/* Hero content alignment via inline style on section */
.avanx-hero[style*="text-align:left"] {
    justify-content: flex-start;
}
.avanx-hero[style*="text-align:left"] .avanx-hero__content {
    text-align: left;
}
.avanx-hero[style*="text-align:left"] .avanx-hero__subtitle {
    margin-left: 0;
}

.avanx-hero[style*="text-align:right"] {
    justify-content: flex-end;
}
.avanx-hero[style*="text-align:right"] .avanx-hero__content {
    text-align: right;
}
.avanx-hero[style*="text-align:right"] .avanx-hero__subtitle {
    margin-left: auto;
    margin-right: 0;
}

.avanx-hero__title {
    font-family: var(--avanx-font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.avanx-hero__subtitle {
    font-size: var(--avanx-subtitle-size, 1.125rem);
    color: rgba(255, 255, 255, 0.68);
    max-width: 560px;
    margin: 0 auto 36px;
    font-weight: 400;
    line-height: 1.6;
}

/* ─── About ──────────────────────────────────────────────────── */
.avanx-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.avanx-about__content .avanx-section__title {
    text-align: inherit;
}

.avanx-about__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--avanx-text);
}

.avanx-about__image img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ─── Cards ──────────────────────────────────────────────────── */
.avanx-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 300ms ease-out, box-shadow 300ms ease-out, border-color 300ms ease-out;
}

.avanx-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(var(--avanx-accent-rgb), 0.2);
}

.avanx-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.avanx-card--link:hover {
    color: inherit;
    opacity: 1;
}

.avanx-card__image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.avanx-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease-out;
}

.avanx-card:hover .avanx-card__image img {
    transform: scale(1.06);
}

.avanx-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--avanx-accent);
    opacity: 0.2;
}

.avanx-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.avanx-card__badge--venda {
    background: var(--avanx-accent);
    color: var(--avanx-dark);
}

.avanx-card__badge--aluguel {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.avanx-card__badge--vendido {
    background: #dc2626;
    color: #ffffff;
}

.avanx-card__badge--destaque {
    background: var(--avanx-accent);
    color: var(--avanx-dark);
}

.avanx-card__body {
    padding: 20px 24px;
}

.avanx-card__title {
    font-family: var(--avanx-font-heading);
    font-size: 1.0625rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.avanx-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--avanx-text);
    margin-bottom: 14px;
}

.avanx-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.avanx-card__details span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}

.avanx-card__price-wrapper {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.avanx-card__price-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 4px;
}

.avanx-card__price {
    font-family: 'Inter', var(--avanx-font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--avanx-accent);
    letter-spacing: -0.02em;
}

.avanx-card__price-old {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-right: 8px;
}

.avanx-card__pricing {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
}

.avanx-card__excerpt {
    font-size: 0.875rem;
    color: var(--avanx-text);
    margin-bottom: 14px;
    line-height: 1.6;
}

/* ─── Custom Fields (dynamic) ────────────────────────────────── */
.avanx-card__custom-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.avanx-card__custom-field {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.avanx-card__custom-field strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ─── Testimonials ───────────────────────────────────────────── */
.avanx-testimonial {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.avanx-testimonial__quote {
    color: var(--avanx-accent);
    opacity: 0.4;
    margin-bottom: 16px;
}

.avanx-testimonial__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-style: italic;
}

.avanx-testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avanx-testimonial__photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.avanx-testimonial__author strong {
    display: block;
    font-size: 0.875rem;
    color: #ffffff;
}

.avanx-testimonial__author span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.avanx-faq__item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 200ms ease;
}

.avanx-faq__item[open] {
    border-color: var(--avanx-accent);
}

.avanx-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9375rem;
    color: #ffffff;
    list-style: none;
    transition: background-color 200ms ease;
    letter-spacing: -0.02em;
}

.avanx-faq__question::-webkit-details-marker {
    display: none;
}

.avanx-faq__question:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.avanx-faq__question svg {
    flex-shrink: 0;
    transition: transform 200ms ease;
    color: var(--avanx-accent);
}

.avanx-faq__item[open] .avanx-faq__question svg {
    transform: rotate(180deg);
}

.avanx-faq__answer {
    padding: 0 24px 18px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--avanx-text);
}

/* ─── CTA ────────────────────────────────────────────────────── */
.avanx-cta {
    background-color: #242A30;
    background-image: linear-gradient(135deg, #242A30, #363E47);
    padding: 100px 0;
    border-radius: 10px;
    margin: 60px 30px;
    position: relative;
    overflow: hidden;
}

/* When background-color is set via inline style, remove gradient */
.avanx-cta[style*="background-color"] {
    background-image: none;
}

.avanx-cta__content {
    text-align: center;
}

.avanx-cta__title {
    font-family: var(--avanx-font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.avanx-cta__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Services ───────────────────────────────────────────────── */
.avanx-service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 32px;
    transition: transform 300ms ease-out, border-color 300ms ease-out;
}

.avanx-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--avanx-accent-rgb), 0.3);
}

.avanx-service-card__icon {
    color: var(--avanx-accent);
    margin-bottom: 16px;
}

.avanx-service-card__title {
    font-family: var(--avanx-font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.avanx-service-card__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--avanx-text);
}

/* ─── Contact ────────────────────────────────────────────────── */
.avanx-contact__cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.avanx-contact__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 200ms ease-out, border-color 200ms ease-out, box-shadow 200ms ease-out;
}

a.avanx-contact__card:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--avanx-accent-rgb), 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: inherit;
    opacity: 1;
}

.avanx-contact__card-icon {
    color: var(--avanx-accent);
    margin-bottom: 4px;
}

.avanx-contact__card strong {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.avanx-contact__card span {
    font-size: 0.9375rem;
    color: var(--avanx-text);
    line-height: 1.4;
}

.avanx-contact__card-link {
    font-size: 0.75rem !important;
    color: var(--avanx-accent) !important;
    margin-top: 4px;
    font-weight: 500;
}

/* ─── Clients / Logo Marquee ─────────────────────────────────── */
.avanx-clients__marquee {
    overflow: hidden;
    position: relative;
}

.avanx-clients__track {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 24px 0;
}

.avanx-clients__track--animated {
    animation: marquee 20s linear infinite;
    width: max-content;
    gap: 48px;
}

.avanx-clients__logo {
    flex-shrink: 0;
}

.avanx-clients__logo img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%) brightness(1.8);
    transition: opacity 300ms ease, filter 300ms ease;
}

.avanx-clients__logo img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-25%); }
}

@media (prefers-reduced-motion: reduce) {
    .avanx-clients__track--animated {
        animation: none;
    }
}

/* ─── Search Bar ─────────────────────────────────────────────── */
.avanx-search { margin: -40px 30px 40px; padding: 32px; position: relative; z-index: 10; border-radius: 16px; background: rgba(29,34,39,0.9); border: 1px solid rgba(255,255,255,0.08); }
.avanx-search--glass { background: rgba(29,34,39,0.6); backdrop-filter: blur(20px); }
.avanx-search--solid { background: #1D2227; }
.avanx-search__inner { max-width: 1000px; margin: 0 auto; }
.avanx-search__title { font-family: var(--avanx-font-heading); font-size: 1.25rem; font-weight: 600; color: #fff; margin-bottom: 16px; text-align: center; }
.avanx-search__form { display: flex; flex-direction: column; gap: 12px; }
.avanx-search__main { display: flex; gap: 0; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.avanx-search__main input { flex: 1; padding: 14px 18px; background: transparent; border: none; color: #fff; font-size: 0.9375rem; outline: none; }
.avanx-search__main input::placeholder { color: rgba(255,255,255,0.4); }
.avanx-search__btn { display: flex; align-items: center; gap: 6px; padding: 14px 24px; background: var(--avanx-accent); color: var(--avanx-dark); border: none; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: opacity 0.2s; }
.avanx-search__btn:hover { opacity: 0.9; }
.avanx-search__filters { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
.avanx-search__filters select { padding: 10px 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-size: 0.8125rem; cursor: pointer; outline: none; appearance: none; }
.avanx-search__filters select option { background: #1D2227; color: #fff; }
.avanx-search__results { margin-top: 20px; }
.avanx-search__loading, .avanx-search__empty { text-align: center; padding: 32px; color: rgba(255,255,255,0.5); font-size: 0.9375rem; }
.avanx-search__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.avanx-search__card { display: block; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s, border-color 0.2s; }
.avanx-search__card:hover { transform: translateY(-2px); border-color: rgba(var(--avanx-accent-rgb),0.3); opacity: 1; color: inherit; }
.avanx-search__card-img { position: relative; aspect-ratio: 16/10; background: rgba(255,255,255,0.03); overflow: hidden; }
.avanx-search__card-img img { width: 100%; height: 100%; object-fit: cover; }
.avanx-search__card-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size: 2rem; opacity: 0.3; }
.avanx-search__card-badge { position: absolute; top: 8px; left: 8px; padding: 3px 10px; background: var(--avanx-accent); color: var(--avanx-dark); border-radius: 4px; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; }
.avanx-search__card-body { padding: 14px 16px; }
.avanx-search__card-body h4 { font-size: 0.9375rem; font-weight: 600; color: #fff; margin: 0 0 4px; }
.avanx-search__card-loc { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin: 0 0 8px; }
.avanx-search__card-meta { display: flex; gap: 10px; font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.avanx-search__card-price { font-size: 1rem; font-weight: 700; color: var(--avanx-accent); margin: 0; }
@media (max-width: 768px) { .avanx-search { margin: -20px 16px 24px; padding: 20px; } .avanx-search__main { flex-direction: column; } .avanx-search__btn { justify-content: center; } .avanx-search__filters { grid-template-columns: 1fr 1fr; } .avanx-search__grid { grid-template-columns: 1fr; } }

/* ─── AI Section ─────────────────────────────────────────────── */
.avanx-ai-section {
    padding: 60px 0;
    overflow: hidden;
    clear: both;
}

.avanx-ai-wrap,
#avanx-ai-wrap-1,
#avanx-ai-wrap-2,
#avanx-ai-wrap-3,
#avanx-ai-wrap-4,
#avanx-ai-wrap-5 {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

#avanx-ai-content {
    width: 100%;
    max-width: 100%;
}

#avanx-ai-content img {
    max-width: 100%;
    height: auto;
}

/* ─── Gallery Posts ──────────────────────────────────────────── */
.avanx-gposts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.avanx-gpost {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 300ms ease-out, box-shadow 300ms ease-out;
}

.avanx-gpost:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.avanx-gpost__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f1f5f9;
}

.avanx-gpost__media img,
.avanx-gpost__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avanx-gpost__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1a202c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avanx-gpost__play {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 200ms ease;
}

.avanx-gpost__play:hover {
    background: rgba(0, 0, 0, 0.8);
}

.avanx-gpost__body {
    padding: 24px 24px 28px;
}

.avanx-gpost__title {
    font-family: var(--avanx-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.avanx-gpost__text {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.avanx-gpost__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--avanx-accent);
    text-decoration: none;
    transition: gap 200ms ease;
}

.avanx-gpost__link:hover {
    gap: 8px;
    opacity: 1;
}

@media (max-width: 768px) {
    .avanx-gposts__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .avanx-gpost__media {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 480px) {
    .avanx-gposts__grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Footer ─────────────────────────────────────────────────── */
.avanx-footer {
    background: #141719;
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 24px;
}

.avanx-single-imovel-page + .avanx-footer {
    margin-top: 0;
}

.avanx-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.avanx-footer__name {
    font-family: var(--avanx-font-heading);
    font-size: 1.375rem;
    color: #ffffff;
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.avanx-footer__desc {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.6;
}

.avanx-footer h4 {
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.avanx-footer p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    margin-bottom: 8px;
}

.avanx-footer__social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.avanx-footer__social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    transition: color 200ms ease;
}

.avanx-footer__social-links a:hover {
    color: var(--avanx-accent);
}

.avanx-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    text-align: center;
}

.avanx-footer__bottom p {
    justify-content: center;
    font-size: 0.75rem;
    opacity: 0.5;
}

/* ─── WhatsApp Float ─────────────────────────────────────────── */
.avanx-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}

.avanx-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .avanx-header__nav {
        display: none;
    }

    .avanx-header__toggle {
        display: flex;
    }

    .avanx-header__actions .avanx-header__phone {
        display: none;
    }

    .avanx-hero {
        margin-left: 20px;
        margin-right: 20px;
    }

    .avanx-hero--fullscreen {
        margin: 0;
    }

    .avanx-cta {
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 64px;
    }

    .avanx-container {
        padding: 0 20px;
    }

    .avanx-section {
        padding: 64px 0;
    }

    .avanx-section__title {
        font-size: 1.75rem;
    }

    .avanx-about__grid {
        grid-template-columns: 1fr;
    }

    .avanx-contact__cards {
        grid-template-columns: 1fr;
    }

    .avanx-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .avanx-hero {
        margin: 0;
        border-radius: 0;
        min-height: 80vh;
        margin-top: 72px;
    }

    .avanx-hero--fullscreen {
        margin-top: 0;
        min-height: 100vh;
    }

    .avanx-cta {
        margin: 0;
        border-radius: 0;
    }

    .avanx-grid--3 {
        grid-template-columns: 1fr;
    }

    .avanx-header__inner {
        height: 60px;
    }

    .avanx-header__logo a,
    .avanx-header__brand {
        font-size: 1.125rem;
    }

    .avanx-header__logo img {
        max-height: 28px;
    }

    .avanx-header__actions .avanx-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .avanx-header__actions {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .avanx-header__actions .avanx-btn {
        display: none;
    }

    .avanx-header__toggle {
        display: flex !important;
    }

    .avanx-header__logo a,
    .avanx-header__brand {
        font-size: 1rem;
    }
}

/* ─── Mobile Menu Open State ─────────────────────────────────── */
.avanx-header__nav--open {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-width: 100vw !important;
    min-height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    background: var(--mobile-menu-bg, #1D2227) !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 60px 30px !important;
    z-index: 2147483647 !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
    clip-path: none !important;
    border-radius: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

.avanx-header__nav--open .avanx-header__menu {
    flex-direction: column;
    gap: 0;
    text-align: center;
    width: 100%;
    max-width: 320px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.avanx-header__nav--open .avanx-header__menu li {
    list-style: none;
}

.avanx-header__nav--open .avanx-header__menu li a {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--mobile-menu-text, #ffffff) !important;
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    opacity: 1 !important;
}

.avanx-header__nav--open .avanx-header__menu li:last-child a {
    border-bottom: none;
}

.avanx-header__nav--open .avanx-header__menu li a::after {
    display: none !important;
}

.avanx-header__nav--open .avanx-header__menu li a:hover {
    color: var(--mobile-menu-text, #ffffff) !important;
    opacity: 0.7 !important;
}

/* ─── Header Transparency ────────────────────────────────────── */
.avanx-header--glass {
    background: rgba(29, 34, 39, 0.7);
    backdrop-filter: blur(16px);
}
.avanx-header--glass.avanx-header--scrolled {
    background: rgba(29, 34, 39, 0.92);
}

.avanx-header--solid {
    background: rgba(29, 34, 39, 1);
    backdrop-filter: none;
}
.avanx-header--solid.avanx-header--scrolled {
    background: rgba(29, 34, 39, 1);
}

.avanx-header--transparent {
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
}
.avanx-header--transparent.avanx-header--scrolled {
    background: rgba(29, 34, 39, 0.95);
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* Glass Pill — floating rounded header */
.avanx-header--glass-pill {
    background: rgba(29, 34, 39, 0.75);
    backdrop-filter: blur(20px);
    margin: 12px 40px 0;
    border-radius: 50px;
    border-bottom: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    left: 0;
    right: 0;
    width: auto;
}

.avanx-header--glass-pill .avanx-header__inner {
    height: 56px;
    padding: 0 24px;
}

.avanx-header--glass-pill.avanx-header--scrolled {
    background: rgba(29, 34, 39, 0.92);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .avanx-header--glass-pill {
        margin: 8px 16px 0;
        border-radius: 24px;
    }
    .avanx-header--glass-pill .avanx-header__inner {
        height: 52px;
        padding: 0 16px;
    }
}

/* ─── Single Imóvel (Light Theme) ────────────────────────────── */
.avanx-single-imovel-page {
    background-color: #f0f7f7;
    color: #1d2327;
    min-height: 100vh;
}

body.single-imovel {
    background-color: #f0f7f7;
}

/* Top bar */
.avanx-si__topbar {
    background: #ffffff;
    border-bottom: 1px solid #e5eaee;
    padding: 14px 0;
}

.avanx-si__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a5568;
    text-decoration: none;
    transition: color 200ms ease-out;
}

.avanx-si__back:hover {
    color: #1d2327;
    opacity: 1;
}

/* Hero */
.avanx-si__hero {
    position: relative;
    width: 100%;
    height: 400px;
    background: #dfe9ec;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avanx-si__hero--has-image {
    height: 480px;
}

.avanx-si__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avanx-si__hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0b4bc;
}

/* Content wrapper */
.avanx-si__content {
    padding: 48px 0 80px;
}

.avanx-si__layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* Main column */
.avanx-si__main {
    min-width: 0;
}

/* Badges */
.avanx-si__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.avanx-si__badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.avanx-si__badge--tipo {
    background: #d1fae5;
    color: #065f46;
}

.avanx-si__badge--status {
    background: #dbeafe;
    color: #1e40af;
}

.avanx-si__badge--finalidade {
    background: transparent;
    color: #4a5568;
    border: 1.5px solid #cbd5e0;
}

/* Title */
.avanx-si__title {
    font-family: var(--avanx-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #1a202c;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 8px;
}

/* Price */
.avanx-si__price {
    font-family: var(--avanx-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #059669;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.avanx-si__price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
    padding: 16px 20px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
}

.avanx-si__price-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #064e3b;
    background: #d1fae5;
    padding: 3px 8px;
    border-radius: 4px;
}

.avanx-si__price-value {
    font-family: 'Inter', var(--avanx-font-body);
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    letter-spacing: -0.02em;
}

.avanx-si__price-type {
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 500;
}

/* Location */
.avanx-si__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 32px;
}

.avanx-si__location svg {
    color: #94a3b8;
    flex-shrink: 0;
}

.avanx-si__short-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

/* Details Grid */
.avanx-si__details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.avanx-si__detail-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 24px 16px;
    background: #ffffff;
    border: 1px solid #e5eaee;
    border-radius: 12px;
    text-align: center;
    transition: box-shadow 200ms ease-out, transform 200ms ease-out;
}

.avanx-si__detail-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.avanx-si__detail-card svg {
    color: #0d9488;
}

.avanx-si__detail-value {
    font-family: var(--avanx-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
}

.avanx-si__detail-label {
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 500;
}

/* Section blocks */
.avanx-si__section {
    margin-bottom: 48px;
}

.avanx-si__section-title {
    font-family: var(--avanx-font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* Description */
.avanx-si__description {
    font-size: 1rem;
    line-height: 1.75;
    color: #4a5568;
}

.avanx-si__description p {
    margin-bottom: 16px;
}

/* Characteristics tags */
.avanx-si__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.avanx-si__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #334155;
}

.avanx-si__tag svg {
    color: #059669;
}

/* Custom Fields */
.avanx-si__custom-fields {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.avanx-si__custom-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    background: #f8fafc;
    border: 1px solid #e5eaee;
    border-radius: 8px;
}

.avanx-si__custom-field strong {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
}

.avanx-si__custom-field span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a202c;
}

/* Gallery */
.avanx-si__gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.avanx-si__gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 300ms ease-out, box-shadow 300ms ease-out;
}

.avanx-si__gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Map */
.avanx-si__map {
    border-radius: 10px;
    overflow: hidden;
}

.avanx-si__map iframe {
    display: block;
    width: 100%;
}

/* Sidebar */
.avanx-si__sidebar {
    position: sticky;
    top: 100px;
}

.avanx-si__sidebar-card {
    background: #ffffff;
    border: 1px solid #e5eaee;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.avanx-si__sidebar-title {
    font-family: var(--avanx-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.avanx-si__sidebar-text {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.avanx-si__sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out;
    margin-bottom: 10px;
}

.avanx-si__sidebar-btn:last-child {
    margin-bottom: 0;
}

.avanx-si__sidebar-btn:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.avanx-si__sidebar-btn--whatsapp {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.avanx-si__sidebar-btn--whatsapp:hover {
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

.avanx-si__sidebar-btn--phone {
    background: #f1f5f9;
    color: #334155;
}

.avanx-si__sidebar-btn--phone:hover {
    background: #e2e8f0;
    color: #1a202c;
}

.avanx-si__sidebar-btn--email {
    background: #f1f5f9;
    color: #334155;
}

.avanx-si__sidebar-btn--email:hover {
    background: #e2e8f0;
    color: #1a202c;
}

/* CTA section */
.avanx-si__cta {
    background: #ffffff;
    border-top: 1px solid #e5eaee;
    padding: 64px 0;
}

.avanx-si__cta-title {
    font-family: var(--avanx-font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.avanx-si__cta-text {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive — Single Imóvel */
@media (max-width: 1024px) {
    .avanx-si__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .avanx-si__sidebar {
        position: static;
        order: -1;
    }
    .avanx-si__sidebar-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .avanx-si__hero {
        height: 220px;
    }
    .avanx-si__hero--has-image {
        height: 280px;
    }
    .avanx-si__details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .avanx-si__gallery-grid {
        grid-template-columns: 1fr;
    }
    .avanx-si__content {
        padding: 24px 0 48px;
    }
    .avanx-si__title {
        font-size: 1.5rem;
    }
    .avanx-si__price {
        font-size: 1.375rem;
    }
    .avanx-si__tags {
        gap: 8px;
    }
    .avanx-si__tag {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
    .avanx-si__cta {
        padding: 48px 0;
    }
}

@media (max-width: 480px) {
    .avanx-si__details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .avanx-si__detail-card {
        padding: 16px 10px;
    }
    .avanx-si__detail-value {
        font-size: 1.125rem;
    }
    .avanx-si__badges {
        gap: 6px;
    }
    .avanx-si__badge {
        font-size: 0.6875rem;
        padding: 4px 10px;
    }
    .avanx-si__section {
        margin-bottom: 32px;
    }
    .avanx-si__sidebar-btn {
        font-size: 0.8125rem;
        padding: 12px 16px;
    }
}

/* ─── Mobile small viewport fix (Customizer preview) ─────────── */
@media screen and (max-width: 480px) {
    .avanx-hero {
        min-height: 70vh;
    }
}

@media screen and (max-width: 380px) {
    body {
        min-width: 320px;
    }
    .avanx-container {
        padding: 0 16px;
    }
}

/* ─── Reduced Motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
