/* =====================================================================
   Catálogo Público — Estética luxury real estate
   ---------------------------------------------------------------------
   Inspirado em Compass / Sotheby's / Airbnb listing pages.
   Paleta neutra off-white + serif Playfair Display em headlines.
   Multi-tenant: --brand e --brand-accent vêm do tenant_branding,
   mas só são usadas em pontos estratégicos (logo, badges, hero accents).
   O resto do design usa os tokens --cat-* (paleta fixa do design system).

   FONTES carregadas via <link> no _layout.html (preconnect).
   ===================================================================== */

:root {
    /* Paleta (referência: viniciusaraujoimoveis.com.br) */
    --cat-bg: #FFFFFF;
    --cat-bg-soft: #F7F7F7;
    --cat-text: #222222;
    --cat-text-soft: #555555;
    --cat-accent: var(--brand, #4268C1);
    --cat-accent-text: var(--brand-accent, #0270F7);
    --cat-line: #E9E9E9;
    --cat-card: #FFFFFF;
    --cat-wa: #25D366;              /* verde WhatsApp canônico */
    --cat-header-bg: rgba(255, 255, 255, 0.72);

    /* Tipografia — Inter pra TUDO (mesma fonte da dashboard /corretor/*).
       Hierarquia agora vem de weight + letter-spacing + size, não de
       contraste serif/sans. Mais coeso visualmente entre catálogo público
       e portal interno. */
    --font-display: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    /* Type scale (escalas fluídas com clamp pra responsive natural) */
    --fs-display-1: clamp(44px, 6vw, 80px);   /* hero h1 fullscreen */
    --fs-display-2: clamp(34px, 4.2vw, 56px); /* section h2 dominante (listings, meet) */
    --fs-display-3: clamp(28px, 3vw, 42px);   /* section h2 secundário (services, undecided) */
    --fs-h3:        clamp(20px, 1.6vw, 26px); /* card titles, service titles */
    --fs-body-lg:   17px;                     /* bio, mentoria text, undecided text */
    --fs-body:      16px;                     /* default */
    --fs-body-sm:   14px;                     /* card meta, footer */
    --fs-eyebrow:   12px;                     /* pre-titles uppercase */
    --fs-caption:   11px;                     /* micro labels */

    /* Tracking (letter-spacing) por categoria — calibrado pra Inter.
       Inter pede tracking mais apertado em sizes grandes pra parecer
       presença, e neutro/positivo em small sizes pra legibilidade. */
    --tracking-display: -0.035em;             /* hero/h2 grandes */
    --tracking-h3:      -0.02em;
    --tracking-body:    -0.005em;             /* body Inter respira melhor com leve negativo */
    --tracking-eyebrow: 0.14em;               /* uppercase respira */
    --tracking-button:  0.01em;
    --tracking-caps:    0.08em;               /* small-caps elements */

    /* Line heights por categoria */
    --lh-display: 1.05;
    --lh-h3:      1.20;
    --lh-body:    1.60;
    --lh-tight:   1.40;

    /* Layout */
    --cat-radius-sm: 6px;
    --cat-radius: 12px;
    --cat-max: 1200px;
}

html.dark {
    --cat-bg: #0F0E0D;
    --cat-bg-soft: #1A1817;
    --cat-text: #F0EDE8;
    --cat-text-soft: #B5B0A8;
    --cat-line: #2A2826;
    --cat-card: #171615;
    --cat-header-bg: rgba(15, 14, 13, 0.78);
}

* { box-sizing: border-box; }
html {
    -webkit-text-size-adjust: 100%;
    /* Smooth scroll é controlado por JS custom (mais fluido que o
       scroll-behavior nativo do browser). Mantemos scroll-padding-top
       pra compensar header fixed em qualquer scroll programático
       (incluindo anchor links #imoveis). */
    scroll-padding-top: 72px;
}
@media (min-width: 1024px) {
    html { scroll-padding-top: 80px; }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
body {
    margin: 0; padding: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    color: var(--cat-text);
    background: var(--cat-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Mesmas features OpenType da dashboard (Inter ligatures + alternates) */
    font-feature-settings: 'rlig' 1, 'calt' 1, 'cv11' 1, 'ss01' 1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ───────────────────────────────────────────────────────────────────────
   Tipografia base — display serif em headlines
   ─────────────────────────────────────────────────────────────────────── */
.cat-display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }

/* ───────────────────────────────────────────────────────────────────────
   Header — Glassmorphism fixed (estilo viniciusaraujoimoveis.com.br)
   ─────────────────────────────────────────────────────────────────────── */
.cat-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: var(--cat-header-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition:
        padding 0.2s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}
.cat-header.scrolled {
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

/* Header transparente sobre o hero video.
   Quando body tem .has-hero AND header NÃO scrollado, fica overlay.
   No scroll, .scrolled é adicionado pelo JS e header solidifica. */
body.has-hero .cat-header:not(.scrolled) {
    background: transparent;
    border-bottom-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}
body.has-hero .cat-header:not(.scrolled) .cat-nav-desktop a {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
body.has-hero .cat-header:not(.scrolled) .cat-nav-desktop a:hover {
    color: #fff;
    border-bottom-color: #fff;
}
body.has-hero .cat-header:not(.scrolled) .cat-logo-text {
    color: #fff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
body.has-hero .cat-header:not(.scrolled) .cat-hamburger {
    color: #fff;
    filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.5));
}
/* Logo image — força white quando sobre hero (funciona pra qualquer
   logo PNG/SVG colorido). User pode subir variante white depois. */
body.has-hero .cat-header:not(.scrolled) .cat-logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 1px 12px rgba(0, 0, 0, 0.4));
}
.cat-header-inner {
    max-width: var(--cat-max);
    margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px;
    gap: 24px;
}
.cat-header.scrolled .cat-header-inner { padding: 10px 20px; }

/* Body compensa header fixed */
body { padding-top: 72px; }
@media (min-width: 1024px) { body { padding-top: 80px; } }

.cat-logo { display: flex; align-items: center; gap: 8px; min-height: 40px; }
.cat-logo-img { height: 44px; width: auto; max-width: 220px; object-fit: contain; }
.cat-logo-text {
    font-family: var(--font-display);
    font-weight: 700; font-size: 22px; letter-spacing: -0.01em;
    color: var(--brand, var(--cat-text));
}

.cat-hamburger {
    background: transparent; border: 0;
    padding: 8px;
    color: var(--cat-text);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.15s;
}
.cat-hamburger:hover { opacity: 0.65; }

.cat-nav-desktop { display: none; }

@media (min-width: 900px) {
    .cat-nav-desktop {
        display: flex; gap: 28px; align-items: center;
    }
    .cat-nav-desktop a {
        font-family: var(--font-sans);
        font-size: 14px; font-weight: 500;
        color: var(--cat-text);
        letter-spacing: 0.01em;
        padding: 6px 0;
        border-bottom: 2px solid transparent;
        transition: border-color 0.2s, color 0.2s;
    }
    .cat-nav-desktop a:hover {
        color: var(--brand, var(--cat-text));
        border-bottom-color: var(--brand, var(--cat-text));
    }
    .cat-hamburger { display: none; }
}

/* ───────────────────────────────────────────────────────────────────────
   Mobile drawer
   ─────────────────────────────────────────────────────────────────────── */
.cat-overlay {
    position: fixed; inset: 0; z-index: 40;
    background: rgba(0,0,0,0.35);
}
.cat-drawer {
    position: fixed; top: 0; right: 0; height: 100vh;
    width: 84vw; max-width: 340px;
    background: var(--cat-card);
    z-index: 50;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 64px 28px 32px;
    overflow-y: auto;
    box-shadow: -16px 0 48px rgba(0,0,0,0.08);
}
.cat-drawer.open { transform: translateX(0); }
.cat-drawer-close {
    position: absolute; top: 16px; right: 16px;
    background: transparent; border: 0;
    cursor: pointer; color: var(--cat-text);
    padding: 8px;
    line-height: 0;
}
.cat-drawer nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 32px; }
.cat-drawer nav a {
    padding: 14px 4px;
    font-size: 17px; font-weight: 500;
    color: var(--cat-text);
    border-bottom: 1px solid var(--cat-line);
    transition: padding-left 0.2s;
}
.cat-drawer nav a:hover { padding-left: 8px; }
.cat-drawer-cta {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--cat-wa);
    color: #ffffff !important;
    padding: 16px 20px;
    border-radius: var(--cat-radius);
    text-align: center;
    font-size: 15px; font-weight: 500;
    letter-spacing: 0.01em;
    margin-top: 16px;
}

/* ───────────────────────────────────────────────────────────────────────
   Main + sections
   ─────────────────────────────────────────────────────────────────────── */
.cat-main {
    min-height: 60vh;
    padding-bottom: 100px;  /* espaço para sticky CTA + FAB */
}
.cat-section { padding: 32px 20px; }
@media (min-width: 1024px) {
    .cat-section { padding: 56px 40px; max-width: var(--cat-max); margin: 0 auto; }
}

.cat-section-title {
    font-family: var(--font-display);
    font-size: 26px; font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
@media (min-width: 1024px) {
    .cat-section-title { font-size: 34px; margin-bottom: 24px; }
}

.cat-page-title {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0 0 12px;
}
@media (min-width: 1024px) {
    .cat-page-title { font-size: 44px; }
}
.cat-page-subtitle {
    font-size: 16px; color: var(--cat-text-soft);
    margin: 0 0 32px;
    line-height: 1.55;
}

.cat-h2 {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    letter-spacing: -0.01em;
    margin: 32px 0 12px;
}
@media (min-width: 1024px) {
    .cat-h2 { font-size: 26px; }
}

/* ───────────────────────────────────────────────────────────────────────
   Hero genérico (página /imoveis)
   ─────────────────────────────────────────────────────────────────────── */
.cat-hero {
    padding: 48px 20px 32px;
}
.cat-hero-title {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0 0 12px;
}
.cat-hero-subtitle {
    font-size: 16px; color: var(--cat-text-soft);
    margin: 0 0 24px;
    line-height: 1.55;
    max-width: 560px;
}

.cat-hero-search {
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 16px;
}
.cat-search-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--cat-line);
    border-radius: var(--cat-radius);
    font-size: 16px;
    font-family: inherit;
    background: var(--cat-card);
    color: var(--cat-text);
    transition: border-color 0.2s;
}
.cat-search-input:focus {
    outline: none;
    border-color: var(--cat-text);
}
.cat-search-btn {
    background: var(--cat-text);
    color: var(--cat-bg);
    padding: 14px 24px;
    border: 0;
    border-radius: var(--cat-radius);
    font-size: 14px; font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
}
.cat-search-btn:hover { opacity: 0.85; }
.cat-hero-whatsapp {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--cat-wa);
    color: #ffffff !important;
    padding: 14px 24px;
    border-radius: var(--cat-radius);
    font-size: 15px; font-weight: 500;
    letter-spacing: 0.01em;
    margin-top: 8px;
}

@media (min-width: 1024px) {
    .cat-hero { padding: 96px 40px 56px; max-width: var(--cat-max); margin: 0 auto; }
    .cat-hero-title { font-size: 56px; }
    .cat-hero-subtitle { font-size: 18px; }
    .cat-hero-search { flex-direction: row; max-width: 700px; }
    .cat-hero-search .cat-search-input { flex: 1; }
    .cat-hero-whatsapp { display: inline-flex; max-width: 400px; }
}

/* ───────────────────────────────────────────────────────────────────────
   Grid de cards (listings)
   ─────────────────────────────────────────────────────────────────────── */
.cat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) { .cat-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; } }

.cat-card {
    display: block;
    background: var(--cat-card);
    border: 1px solid var(--cat-line);
    border-radius: var(--cat-radius);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}
.cat-card:hover {
    border-color: var(--cat-text);
    transform: translateY(-2px);
}
.cat-card-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--cat-line);
    overflow: hidden;
}
.cat-card-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.cat-card:hover .cat-card-photo img { transform: scale(1.02); }
.cat-card-photo-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--cat-accent);
    opacity: 0.5;
}
.cat-card-badge {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--cat-card);
    color: var(--cat-text);
}
.cat-card-badge-reserved {
    background: var(--cat-text);
    color: var(--cat-bg);
}

.cat-card-body { padding: 16px 20px 20px; }
.cat-card-price {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    color: var(--cat-text);
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}
.cat-card-title {
    font-size: 15px; font-weight: 500;
    color: var(--cat-text);
    margin-bottom: 4px;
}
.cat-card-specs {
    font-size: 13px;
    color: var(--cat-text-soft);
    margin-top: 4px;
    letter-spacing: 0.01em;
}

/* ───────────────────────────────────────────────────────────────────────
   Botões
   ─────────────────────────────────────────────────────────────────────── */
.cat-btn-solid,
.cat-btn-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 24px;
    border-radius: var(--cat-radius);
    font-size: 14px; font-weight: 500;
    font-family: inherit;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-align: center;
    transition: opacity 0.2s, background 0.2s, color 0.2s;
}
.cat-btn-solid {
    background: var(--cat-text);
    color: var(--cat-bg) !important;
    border: 0;
}
.cat-btn-solid:hover { opacity: 0.85; }
.cat-btn-outline {
    background: transparent;
    color: var(--cat-text) !important;
    border: 1px solid var(--cat-text);
}
.cat-btn-outline:hover { background: var(--cat-text); color: var(--cat-bg) !important; }

/* CTAs WhatsApp — verde canônico, radius 4px, sem shadow */
.cat-btn-wa {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--cat-wa);
    color: #ffffff !important;
    padding: 14px 24px;
    border-radius: var(--cat-radius);
    font-size: 15px; font-weight: 500;
    letter-spacing: 0.02em;
    font-family: inherit;
    border: 0;
    cursor: pointer;
    transition: opacity 0.2s;
}
.cat-btn-wa:hover { opacity: 0.9; }
.cat-btn-full { width: 100%; }

/* ───────────────────────────────────────────────────────────────────────
   Filtros (página /imoveis)
   ─────────────────────────────────────────────────────────────────────── */
.cat-filters { padding: 0 20px 24px; }
@media (min-width: 1024px) { .cat-filters { padding: 0 40px 32px; max-width: var(--cat-max); margin: 0 auto; } }
.cat-filter-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
@media (min-width: 1024px) {
    .cat-filter-form { grid-template-columns: repeat(5, 1fr); gap: 12px; }
}
.cat-filter-input {
    padding: 12px 14px;
    border: 1px solid var(--cat-line);
    border-radius: var(--cat-radius);
    font-size: 14px;
    font-family: inherit;
    background: var(--cat-card);
    color: var(--cat-text);
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='1.5'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 32px;
}
.cat-filter-input:focus { outline: none; border-color: var(--cat-text); }
input.cat-filter-input { background-image: none; padding-right: 14px; }

/* ───────────────────────────────────────────────────────────────────────
   Detalhe do imóvel
   ─────────────────────────────────────────────────────────────────────── */
.cat-back-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 16px 20px;
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--cat-text-soft);
    text-transform: uppercase;
    transition: color 0.2s;
}
.cat-back-link:hover { color: var(--cat-text); }
@media (min-width: 1024px) {
    .cat-back-link { padding: 24px 40px; max-width: var(--cat-max); margin: 0 auto; display: flex; }
}

/* ───────────────────────────────────────────────────────────────────────
   Galeria estilo Airbnb — mosaico 1+4 desktop, carrossel swipe mobile
   Alinhado com cat-property-header/cat-section: max-width var(--cat-max),
   padding lateral consistente em cada breakpoint.
   ─────────────────────────────────────────────────────────────────────── */
.cat-gallery { width: 100%; background: var(--cat-bg); }

/* Empty state */
.cat-gallery-empty {
    aspect-ratio: 16 / 10;
    background: var(--cat-line);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--cat-text-soft);
}
.cat-gallery-empty p { font-size: 14px; margin-top: 12px; letter-spacing: 0.02em; }

/* ── Mobile (<768px): carrossel horizontal swipe full-bleed ───────── */
.cat-gallery-mobile {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: var(--cat-line);
}
.cat-mobile-track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.cat-mobile-track::-webkit-scrollbar { display: none; }
.cat-mobile-slide {
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: start;
    cursor: pointer;
}
.cat-mobile-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.cat-mobile-counter {
    position: absolute;
    bottom: 14px; right: 14px;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    pointer-events: none;
    backdrop-filter: blur(4px);
}

.cat-gallery-mosaic { display: none; }

/* ── Mosaico (≥768px): wrapper alinhado com sections do body ──────── */
@media (min-width: 768px) {
    .cat-gallery-mobile { display: none; }

    .cat-gallery-mosaic {
        display: grid;
        gap: 6px;
        max-width: var(--cat-max);
        margin: 20px auto 0;
        padding: 0 20px;          /* idêntico ao padding mobile das sections */
        position: relative;
        aspect-ratio: 16 / 9;     /* tablet: razão mais conservadora */
        max-height: 420px;
    }

    .cat-mosaic-cell {
        position: relative;
        overflow: hidden;
        background: var(--cat-line);
        border: 0;
        padding: 0;
        cursor: pointer;
        min-height: 0;
    }
    .cat-mosaic-cell img {
        width: 100%; height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.35s ease, filter 0.2s;
    }
    .cat-mosaic-cell:hover img {
        filter: brightness(0.92);
    }

    /* Tablet: 5+ → 2x2 com a primeira spanando 2 linhas (compacto) */
    .cat-mosaic-count-5 {
        grid-template-columns: 1.4fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .cat-mosaic-count-5 .cat-mosaic-cell:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; border-radius: 12px 0 0 12px; }
    .cat-mosaic-count-5 .cat-mosaic-cell:nth-child(2) { grid-column: 2; grid-row: 1; }
    .cat-mosaic-count-5 .cat-mosaic-cell:nth-child(3) { grid-column: 3; grid-row: 1; border-radius: 0 12px 0 0; }
    .cat-mosaic-count-5 .cat-mosaic-cell:nth-child(4) { grid-column: 2; grid-row: 2; }
    .cat-mosaic-count-5 .cat-mosaic-cell:nth-child(5) { grid-column: 3; grid-row: 2; border-radius: 0 0 12px 0; }

    /* 4 fotos: 1 grande + 3 empilhadas */
    .cat-mosaic-count-4 {
        grid-template-columns: 1.4fr 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
    .cat-mosaic-count-4 .cat-mosaic-cell:nth-child(1) { grid-column: 1; grid-row: 1 / span 3; border-radius: 12px 0 0 12px; }
    .cat-mosaic-count-4 .cat-mosaic-cell:nth-child(2) { grid-column: 2; grid-row: 1; border-radius: 0 12px 0 0; }
    .cat-mosaic-count-4 .cat-mosaic-cell:nth-child(3) { grid-column: 2; grid-row: 2; }
    .cat-mosaic-count-4 .cat-mosaic-cell:nth-child(4) { grid-column: 2; grid-row: 3; border-radius: 0 0 12px 0; }

    /* 3 fotos: 1 grande + 2 empilhadas */
    .cat-mosaic-count-3 {
        grid-template-columns: 1.4fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .cat-mosaic-count-3 .cat-mosaic-cell:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; border-radius: 12px 0 0 12px; }
    .cat-mosaic-count-3 .cat-mosaic-cell:nth-child(2) { grid-column: 2; grid-row: 1; border-radius: 0 12px 0 0; }
    .cat-mosaic-count-3 .cat-mosaic-cell:nth-child(3) { grid-column: 2; grid-row: 2; border-radius: 0 0 12px 0; }

    /* 2 fotos: split 50/50 */
    .cat-mosaic-count-2 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        aspect-ratio: 5 / 2;
        max-height: 360px;
    }
    .cat-mosaic-count-2 .cat-mosaic-cell:nth-child(1) { border-radius: 12px 0 0 12px; }
    .cat-mosaic-count-2 .cat-mosaic-cell:nth-child(2) { border-radius: 0 12px 12px 0; }

    /* 1 foto: hero full-width */
    .cat-mosaic-count-1 {
        grid-template-columns: 1fr;
        aspect-ratio: 16 / 9;
        max-height: 480px;
    }
    .cat-mosaic-count-1 .cat-mosaic-cell:nth-child(1) { border-radius: 14px; }

    /* Botão "Mostrar todas as fotos" — posicionado no canto inferior direito,
       alinhado ao right-padding do container pra ficar visualmente coerente. */
    .cat-mosaic-show-all {
        position: absolute;
        bottom: 16px;
        right: 36px;              /* 20px padding + 16px folga interna */
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 14px;
        background: var(--cat-bg);
        border: 1px solid var(--cat-text);
        border-radius: 8px;
        color: var(--cat-text);
        font-family: inherit;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        letter-spacing: 0.01em;
        transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        white-space: nowrap;
    }
    .cat-mosaic-show-all:hover {
        background: var(--cat-card);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
    }
    .cat-mosaic-show-all svg { flex-shrink: 0; }
}

/* ── Desktop ≥1024px: mosaico mais alto, padding 40 (alinha com cat-section) ── */
@media (min-width: 1024px) {
    .cat-gallery-mosaic {
        gap: 8px;
        margin: 24px auto 0;
        padding: 0 40px;          /* idêntico ao .cat-section / .cat-property-header */
        aspect-ratio: 2 / 1;
        max-height: 520px;
    }
    /* No desktop, a proporção 2:1 fica equilibrada — restaura ratios originais */
    .cat-mosaic-count-5,
    .cat-mosaic-count-4,
    .cat-mosaic-count-3 {
        grid-template-columns: 2fr 1fr 1fr;  /* só count-5 usa 3 cols */
    }
    .cat-mosaic-count-4 { grid-template-columns: 2fr 1fr; }
    .cat-mosaic-count-3 { grid-template-columns: 2fr 1fr; }

    .cat-mosaic-count-5 .cat-mosaic-cell:nth-child(1),
    .cat-mosaic-count-4 .cat-mosaic-cell:nth-child(1),
    .cat-mosaic-count-3 .cat-mosaic-cell:nth-child(1) { border-radius: 16px 0 0 16px; }
    .cat-mosaic-count-5 .cat-mosaic-cell:nth-child(3) { border-radius: 0 16px 0 0; }
    .cat-mosaic-count-5 .cat-mosaic-cell:nth-child(5) { border-radius: 0 0 16px 0; }
    .cat-mosaic-count-4 .cat-mosaic-cell:nth-child(2),
    .cat-mosaic-count-3 .cat-mosaic-cell:nth-child(2) { border-radius: 0 16px 0 0; }
    .cat-mosaic-count-4 .cat-mosaic-cell:nth-child(4),
    .cat-mosaic-count-3 .cat-mosaic-cell:nth-child(3) { border-radius: 0 0 16px 0; }
    .cat-mosaic-count-2 .cat-mosaic-cell:nth-child(1) { border-radius: 16px 0 0 16px; }
    .cat-mosaic-count-2 .cat-mosaic-cell:nth-child(2) { border-radius: 0 16px 16px 0; }
    .cat-mosaic-count-1 .cat-mosaic-cell:nth-child(1) { border-radius: 16px; }
    .cat-mosaic-count-1 { max-height: 560px; }

    .cat-mosaic-show-all {
        bottom: 20px;
        right: 56px;              /* 16px a partir da borda da última célula */
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ── Ultrawide ≥1440px: gallery mais espaçosa ─────────────────────── */
@media (min-width: 1440px) {
    .cat-gallery-mosaic {
        gap: 10px;
        max-height: 600px;
    }
    .cat-mosaic-show-all {
        font-size: 14px;
        padding: 11px 18px;
    }
}

/* ── Lightbox modal fullscreen ───────────────────────────────────── */
.cat-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 1000;
    display: none;
    flex-direction: column;
    animation: catLightboxFadeIn 0.2s ease;
}
.cat-lightbox.is-open { display: flex; }
@keyframes catLightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.cat-lightbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: #fff;
    flex-shrink: 0;
}
@media (min-width: 1024px) {
    .cat-lightbox-header { padding: 20px 32px; }
}
.cat-lightbox-close {
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.cat-lightbox-close:hover { background: rgba(255, 255, 255, 0.12); }
.cat-lightbox-counter {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.cat-lightbox-header-spacer { width: 40px; }
.cat-lightbox-stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px 20px;
    overflow: hidden;
    min-height: 0;
}
@media (min-width: 1024px) {
    .cat-lightbox-stage { padding: 0 80px 40px; }
}
.cat-lightbox-stage img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}
.cat-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, transform 0.15s;
    backdrop-filter: blur(4px);
}
.cat-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%) scale(1.05);
}
.cat-lightbox-prev { left: 20px; }
.cat-lightbox-next { right: 20px; }
@media (max-width: 640px) {
    .cat-lightbox-nav { display: none; }
}

.cat-property-header {
    padding: 32px 20px 24px;
}
@media (min-width: 1024px) {
    .cat-property-header { padding: 48px 40px 32px; max-width: var(--cat-max); margin: 0 auto; }
}
.cat-property-price {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 700;
    color: var(--cat-text);
    letter-spacing: -0.015em;
    line-height: 1.1;
}
@media (min-width: 1024px) { .cat-property-price { font-size: 48px; } }
.cat-property-title {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 600;
    color: var(--cat-text);
    margin: 8px 0 0;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
@media (min-width: 1024px) { .cat-property-title { font-size: 30px; } }
.cat-property-ident {
    font-size: 14px; color: var(--cat-text-soft);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 12px 0 0;
}
.cat-property-banner {
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: var(--cat-radius);
    font-size: 14px;
    background: var(--cat-card);
    border: 1px solid var(--cat-line);
}
.cat-banner-warn {
    border-color: var(--cat-accent);
    color: var(--cat-text);
}
.cat-banner-warn::before {
    content: "•";
    color: var(--cat-accent);
    font-weight: 700;
    margin-right: 8px;
}

.cat-property-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    padding: 24px 20px;
    border-top: 1px solid var(--cat-line);
    border-bottom: 1px solid var(--cat-line);
}
@media (min-width: 640px) {
    .cat-property-specs { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .cat-property-specs { padding: 32px 40px; max-width: var(--cat-max); margin: 0 auto; }
}
.cat-spec {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px;
    color: var(--cat-text);
}
.cat-spec-icon {
    color: var(--cat-accent);
    flex-shrink: 0;
}
.cat-spec strong {
    font-weight: 600;
    color: var(--cat-text);
}

.cat-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--cat-text);
}
.cat-description p { margin: 0 0 16px; }

/* ───────────────────────────────────────────────────────────────────────
   Sticky CTA (página detalhe — mobile)
   ─────────────────────────────────────────────────────────────────────── */
.cat-sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0;
    padding: 12px 16px;
    background: var(--cat-bg);
    border-top: 1px solid var(--cat-line);
    z-index: 20;
}
@media (min-width: 1024px) {
    .cat-sticky-cta {
        position: static;
        background: transparent;
        border-top: 0;
        padding: 24px 40px 56px;
        max-width: var(--cat-max); margin: 0 auto;
    }
    .cat-sticky-cta .cat-btn-wa { max-width: 360px; }
}

/* ───────────────────────────────────────────────────────────────────────
   Empty state
   ─────────────────────────────────────────────────────────────────────── */
.cat-empty {
    padding: 64px 24px;
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}
.cat-empty-icon {
    color: var(--cat-accent);
    margin-bottom: 20px;
    opacity: 0.7;
    display: flex; justify-content: center;
}
.cat-empty-title {
    font-family: var(--font-display);
    font-size: 26px; font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.cat-empty-text {
    font-size: 16px; color: var(--cat-text-soft);
    margin: 0 0 32px;
    line-height: 1.6;
}
.cat-empty-actions {
    display: flex; flex-direction: column; gap: 8px;
    max-width: 320px; margin: 0 auto;
}
@media (min-width: 640px) {
    .cat-empty-actions { flex-direction: row; max-width: 500px; }
    .cat-empty-actions > * { flex: 1; }
}

/* ───────────────────────────────────────────────────────────────────────
   Pagination
   ─────────────────────────────────────────────────────────────────────── */
.cat-pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 24px;
    padding: 48px 20px;
}
.cat-pagination-info {
    font-size: 13px; color: var(--cat-text-soft);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ───────────────────────────────────────────────────────────────────────
   Sobre (about)
   ─────────────────────────────────────────────────────────────────────── */
/* ───── Página Sobre (redesign 2-col) ───────────────────────────── */
.cat-about-hero { padding-top: 48px; padding-bottom: 48px; }
.cat-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 900px) {
    .cat-about-grid { grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
}
.cat-about-media {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}
.cat-about-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.28);
}
.cat-about-img-placeholder {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--brand, #4268C1), color-mix(in oklab, var(--brand, #4268C1) 60%, black));
    color: #fff;
    font-family: var(--font-display);
    font-size: 96px; font-weight: 700;
}
.cat-about-creci-badge {
    position: absolute;
    left: 50%; bottom: 0;
    transform: translate(-50%, 50%);
    background: var(--cat-card);
    color: var(--cat-text);
    border: 1px solid var(--cat-line);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.06em;
    padding: 9px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 24px -6px rgba(15, 23, 42, 0.2);
    white-space: nowrap;
}
.cat-about-name {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: var(--cat-text);
    margin: 6px 0 18px;
}
.cat-about-bio {
    font-size: 16.5px; line-height: 1.75;
    color: var(--cat-text-soft);
    margin: 0 0 28px;
    max-width: 60ch;
}
.cat-about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 40px;
    padding: 22px 0;
    margin-bottom: 28px;
    border-top: 1px solid var(--cat-line);
    border-bottom: 1px solid var(--cat-line);
}
.cat-about-stat { display: flex; flex-direction: column; gap: 2px; }
.cat-about-stat .num {
    font-family: var(--font-sans);
    font-size: 30px; font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--brand, #4268C1);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.cat-about-stat .lbl {
    font-size: 12px;
    color: var(--cat-text-soft);
    letter-spacing: 0.04em;
}
.cat-about-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* legacy (privacidade ainda usa) */
.cat-about-region, .cat-about-creci {
    font-size: 14px; color: var(--cat-text-soft);
    margin: 4px 0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ───────────────────────────────────────────────────────────────────────
   Contact form
   ─────────────────────────────────────────────────────────────────────── */
.cat-contact-actions { margin: 24px 0 40px; }
.cat-divider {
    text-align: center;
    color: var(--cat-text-soft);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 32px 0;
    position: relative;
}
.cat-divider::before,
.cat-divider::after {
    content: '';
    position: absolute; top: 50%;
    width: 30%; height: 1px;
    background: var(--cat-line);
}
.cat-divider::before { left: 0; }
.cat-divider::after { right: 0; }
.cat-divider span { background: var(--cat-bg); padding: 0 16px; position: relative; }

.cat-contact-form {
    display: flex; flex-direction: column; gap: 16px;
    max-width: 500px;
}
.cat-label {
    display: flex; flex-direction: column; gap: 6px;
    font-size: 12px; font-weight: 500;
    color: var(--cat-text-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.cat-input {
    padding: 14px 16px;
    border: 1px solid var(--cat-line);
    border-radius: var(--cat-radius);
    font-size: 16px;
    font-family: inherit;
    background: var(--cat-card);
    color: var(--cat-text);
    transition: border-color 0.2s;
}
.cat-input:focus { outline: none; border-color: var(--cat-text); }
.cat-checkbox {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--cat-text-soft);
}
.cat-checkbox a { text-decoration: underline; color: var(--cat-text); }

/* ───── Página Contato (redesign 2-col) ─────────────────────────── */
.cat-contact-head { margin-bottom: 36px; }
.cat-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}
@media (min-width: 900px) {
    .cat-contact-grid { grid-template-columns: 1fr 1.1fr; gap: 48px; }
}
.cat-contact-channels { display: flex; flex-direction: column; gap: 12px; }
.cat-contact-channel {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 20px;
    background: var(--cat-card);
    border: 1px solid var(--cat-line);
    border-radius: 16px;
    color: var(--cat-text);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
a.cat-contact-channel:hover {
    border-color: color-mix(in oklab, var(--brand, #4268C1) 40%, var(--cat-line));
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -14px rgba(15, 23, 42, 0.2);
}
.cat-contact-channel-static { cursor: default; }
.cat-contact-channel-icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: color-mix(in oklab, var(--brand, #4268C1) 10%, transparent);
    color: var(--brand, #4268C1);
}
.cat-contact-channel-wa .cat-contact-channel-icon {
    background: color-mix(in oklab, var(--cat-wa, #16A34A) 14%, transparent);
    color: color-mix(in oklab, var(--cat-wa, #16A34A) 78%, black);
}
.cat-contact-channel-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.cat-contact-channel-label {
    font-size: 11.5px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--cat-text-soft);
}
.cat-contact-channel-value {
    font-size: 15px; font-weight: 600;
    color: var(--cat-text);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cat-contact-channel-arrow {
    flex-shrink: 0; color: var(--cat-text-soft);
    transition: transform 0.2s, color 0.2s;
}
a.cat-contact-channel:hover .cat-contact-channel-arrow {
    color: var(--brand, #4268C1);
    transform: translateX(3px);
}

/* Form card */
.cat-contact-form-card {
    display: flex; flex-direction: column; gap: 14px;
    background: var(--cat-card);
    border: 1px solid var(--cat-line);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 18px 50px -20px rgba(15, 23, 42, 0.18);
}
.cat-contact-form-head { margin-bottom: 4px; }
.cat-contact-form-title {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--cat-text);
    margin: 0 0 4px;
}
.cat-contact-form-sub {
    font-size: 14px; color: var(--cat-text-soft);
    margin: 0;
}

/* ───────────────────────────────────────────────────────────────────────
   Prose (privacidade)
   ─────────────────────────────────────────────────────────────────────── */
.cat-prose p { font-size: 15px; line-height: 1.75; margin: 14px 0; color: var(--cat-text); }
.cat-prose ul.cat-list { padding-left: 24px; margin: 14px 0; }
.cat-prose ul.cat-list li { margin: 8px 0; font-size: 15px; line-height: 1.6; color: var(--cat-text); }
.cat-prose-meta {
    font-size: 12px; color: var(--cat-text-soft);
    letter-spacing: 0.04em;
    margin-top: 40px;
}

/* ───────────────────────────────────────────────────────────────────────
   Listing header
   ─────────────────────────────────────────────────────────────────────── */
.cat-listing-header { padding-bottom: 16px; }
.cat-section-action { padding-top: 24px; text-align: center; }

/* ───────────────────────────────────────────────────────────────────────
   Footer
   ─────────────────────────────────────────────────────────────────────── */
.cat-footer {
    border-top: 1px solid var(--cat-line);
    padding: 72px 20px 32px;
    background: var(--cat-bg);
    margin-top: 64px;
}
.cat-footer-content {
    max-width: var(--cat-max); margin: 0 auto;
    font-size: 14px;
}

/* Faixa de CTA no topo do footer */
.cat-footer-cta {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 28px 28px;
    margin-bottom: 56px;
    background: linear-gradient(135deg,
        color-mix(in oklab, var(--brand, #4268C1) 9%, var(--cat-card)) 0%,
        var(--cat-card) 100%);
    border: 1px solid var(--cat-line);
    border-radius: 18px;
}
@media (min-width: 768px) {
    .cat-footer-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
        padding: 32px 36px;
    }
}
.cat-footer-cta-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.4vw, 27px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--cat-text);
    margin: 0 0 6px;
    line-height: 1.15;
}
.cat-footer-cta-sub {
    font-size: 14.5px;
    color: var(--cat-text-soft);
    margin: 0;
    line-height: 1.5;
}
.cat-footer-cta-btn { flex-shrink: 0; white-space: nowrap; }
.cat-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px 32px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--cat-line);
    margin-bottom: 24px;
}
@media (min-width: 768px) {
    .cat-footer {
        padding: 96px 40px 40px;
        margin-top: 96px;
    }
    .cat-footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 64px;
        padding-bottom: 56px;
        margin-bottom: 32px;
    }
}
.cat-footer-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cat-footer-col-title {
    font-family: var(--font-sans);
    font-size: var(--fs-eyebrow);
    font-weight: 600;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--cat-text);
    margin: 0 0 18px;
}
.cat-footer-col-brand {
    gap: 8px;
}

.cat-footer-brand {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(28px, 2.5vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--cat-text);
    margin-bottom: 4px;
}
.cat-footer-tagline {
    color: var(--cat-text-soft);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}
.cat-footer-creci {
    color: var(--cat-text-soft);
    font-size: 12px;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 4px;
}
.cat-footer-social {
    display: inline-flex;
    color: var(--brand, var(--cat-text));
    font-weight: 500;
    margin-top: 12px;
    font-size: 14px;
    letter-spacing: 0.01em;
    transition: opacity 0.2s ease;
}
.cat-footer-social:hover { opacity: 0.7; }

.cat-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
}
.cat-footer-links a {
    color: var(--cat-text-soft);
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}
.cat-footer-links a:hover {
    color: var(--brand, var(--cat-text));
    padding-left: 4px;
}

.cat-footer-contact {
    display: flex; flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--cat-text-soft);
    line-height: 1.5;
}
.cat-footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.cat-footer-contact a:hover { color: var(--brand, var(--cat-text)); }
.cat-footer-line { line-height: 1.5; }

.cat-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
@media (min-width: 768px) {
    .cat-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.cat-footer-copy {
    font-size: 12px;
    color: var(--cat-text-soft);
    letter-spacing: 0.04em;
}
.cat-footer-credit {
    font-size: 12px;
    color: var(--cat-text-soft);
    letter-spacing: 0.04em;
}
.cat-footer-credit strong { color: var(--cat-text); font-weight: 600; }

/* ───────────────────────────────────────────────────────────────────────
   WhatsApp FAB
   ─────────────────────────────────────────────────────────────────────── */
.cat-whatsapp-fab {
    position: fixed; bottom: 90px; right: 16px;
    z-index: 25;
    width: 56px; height: 56px;
    background: var(--cat-wa);
    color: #ffffff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.28);
    transition: transform 0.2s;
}
.cat-whatsapp-fab:hover { transform: scale(1.06); }
@media (min-width: 1024px) {
    .cat-whatsapp-fab { bottom: 32px; right: 32px; width: 60px; height: 60px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   HOME PESSOAL DO CORRETOR
   ═══════════════════════════════════════════════════════════════════════ */

/* ───── Hero pessoal ───── */
.hero-personal {
    padding: 56px 20px 40px;
    border-bottom: 1px solid var(--cat-line);
}
.hero-personal-inner {
    max-width: var(--cat-max); margin: 0 auto;
    display: flex; flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .hero-personal { padding: 88px 40px 64px; }
    .hero-personal-inner {
        flex-direction: row;
        gap: 64px;
        text-align: left;
        align-items: center;
    }
}

.hero-photo-wrap {
    flex-shrink: 0;
    position: relative;
}
.hero-photo {
    width: 200px; height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--cat-line);
    background: var(--cat-card);
}
.hero-photo-placeholder {
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 72px; font-weight: 700;
    color: var(--cat-bg);
    background: var(--brand, var(--cat-text));
}
@media (min-width: 768px) {
    .hero-photo { width: 280px; height: 280px; }
}
.hero-creci {
    position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
    background: var(--cat-card);
    color: var(--cat-text);
    border: 1px solid var(--cat-line);
    padding: 4px 14px; border-radius: 2px;
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-text { flex: 1; }
.hero-greeting {
    font-size: 13px; color: var(--cat-text-soft);
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hero-name {
    font-family: var(--font-display);
    font-size: 44px; font-weight: 700;
    margin: 12px 0 8px;
    letter-spacing: -0.015em;
    line-height: 1.05;
}
@media (min-width: 768px) { .hero-name { font-size: 60px; } }
@media (min-width: 1024px) { .hero-name { font-size: 72px; } }
.hero-role {
    font-size: 15px; color: var(--cat-text-soft);
    margin: 0 0 24px;
    letter-spacing: 0.04em;
}
.hero-tagline {
    font-size: 17px; line-height: 1.6;
    color: var(--cat-text);
    margin: 0 0 32px;
    max-width: 560px;
}
.hero-ctas {
    display: flex; flex-direction: column; gap: 12px;
    max-width: 480px;
}
@media (min-width: 640px) {
    .hero-ctas { flex-direction: row; }
}

/* ───── Stats strip ───── */
.stats-strip {
    padding: 40px 20px;
    background: var(--cat-text);
    color: var(--cat-bg);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}
@media (min-width: 768px) {
    .stats-strip { grid-template-columns: repeat(4, 1fr); padding: 56px 40px; gap: 32px; }
}
.stat-block .stat-num {
    font-family: var(--font-display);
    font-size: 40px; font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}
@media (min-width: 768px) { .stat-block .stat-num { font-size: 52px; } }
.stat-block .stat-label {
    font-size: 11px; opacity: 0.7;
    text-transform: uppercase; letter-spacing: 0.12em;
    margin-top: 12px;
}
.stat-block .stat-icon {
    display: inline-flex;
    color: var(--cat-bg);
    opacity: 0.85;
}

/* ───── Condomínios atendidos ───── */
.section-subtitle {
    font-size: 16px; color: var(--cat-text-soft);
    margin: 0 0 32px;
    max-width: 640px;
    line-height: 1.55;
}
.condos-section { padding-bottom: 16px; }
.condos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 640px) { .condos-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .condos-grid { grid-template-columns: 1fr 1fr 1fr; } }

.condo-card {
    display: flex; align-items: center; gap: 16px;
    background: var(--cat-card);
    border: 1px solid var(--cat-line);
    border-radius: var(--cat-radius);
    padding: 20px;
    transition: border-color 0.2s;
}
.condo-card:hover { border-color: var(--cat-text); }
.condo-icon {
    color: var(--cat-accent);
    flex-shrink: 0;
}
.condo-info { flex: 1; min-width: 0; }
.condo-name {
    font-family: var(--font-display);
    font-weight: 700; font-size: 18px;
    color: var(--cat-text);
    letter-spacing: -0.005em;
}
.condo-meta {
    font-size: 13px; color: var(--cat-text-soft);
    margin-top: 4px;
    letter-spacing: 0.02em;
}
.condo-count {
    font-size: 12px; color: var(--cat-accent-text);
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ───── Section head ───── */
.section-head {
    display: flex; justify-content: space-between; align-items: baseline;
    flex-wrap: wrap; gap: 12px;
    margin-bottom: 24px;
}
.section-link {
    font-size: 13px; font-weight: 500;
    color: var(--cat-text);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--cat-text);
    padding-bottom: 2px;
    transition: opacity 0.2s;
}
.section-link:hover { opacity: 0.65; }

/* ───── Why ───── */
.why-section {
    padding: 56px 20px;
    border-top: 1px solid var(--cat-line);
    border-bottom: 1px solid var(--cat-line);
}
@media (min-width: 1024px) { .why-section { padding: 88px 40px; } }
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: var(--cat-max);
    margin: 0 auto;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.why-card {
    padding: 4px 0;
}
.why-icon {
    color: var(--cat-accent);
    margin-bottom: 16px;
    display: inline-flex;
}
.why-title {
    font-family: var(--font-display);
    font-weight: 700; font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: -0.005em;
    color: var(--cat-text);
}
.why-text {
    font-size: 14px; line-height: 1.6;
    color: var(--cat-text-soft);
}

/* ───── Testimonials ───── */
.testimonials-section { padding: 56px 20px; max-width: var(--cat-max); margin: 0 auto; }
@media (min-width: 1024px) { .testimonials-section { padding: 88px 40px; } }
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; gap: 40px; } }
.testimonial-card {
    border-top: 1px solid var(--cat-line);
    padding-top: 32px;
}
.testimonial-stars {
    color: var(--cat-accent);
    font-size: 13px; letter-spacing: 4px;
    margin-bottom: 16px;
}
.testimonial-text {
    font-family: var(--font-display);
    font-size: 18px; line-height: 1.55;
    margin: 0 0 20px;
    color: var(--cat-text);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.005em;
}
.testimonial-author-name {
    font-weight: 600; font-size: 14px;
    color: var(--cat-text);
}
.testimonial-author-meta {
    font-size: 12px; color: var(--cat-text-soft);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ───── CTA final (sereno, sem gradient escuro) ───── */
.cta-final {
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid var(--cat-line);
    background: var(--cat-bg);
}
@media (min-width: 1024px) { .cta-final { padding: 120px 40px; } }
.cta-final-inner { max-width: 720px; margin: 0 auto; }
.cta-final-eyebrow {
    font-size: 12px;
    color: var(--cat-text-soft);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}
.cta-final-title {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--cat-text);
}
@media (min-width: 768px) { .cta-final-title { font-size: 44px; } }
.cta-final-text {
    font-size: 17px;
    color: var(--cat-text-soft);
    margin: 0 0 40px;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════
   WhatsApp mockup section (atendimento direto)
   ═══════════════════════════════════════════════════════════════════════ */
.wa-mockup-section {
    padding: 64px 20px;
    max-width: var(--cat-max); margin: 0 auto;
}
@media (min-width: 1024px) {
    .wa-mockup-section {
        padding: 96px 40px;
        display: grid; grid-template-columns: 1fr 380px; gap: 80px;
        align-items: center;
    }
}
.wa-mockup-text h2 {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 24px;
    line-height: 1.15;
}
@media (min-width: 768px) { .wa-mockup-text h2 { font-size: 42px; } }
.wa-mockup-text p {
    font-size: 17px; line-height: 1.6;
    color: var(--cat-text-soft);
    margin: 0 0 16px;
}
.wa-mockup-text p strong { color: var(--cat-text); font-weight: 600; }

.wa-phone {
    background: #0c0c0c;
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 32px 64px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
    max-width: 360px;
    margin: 40px auto 0;
}
@media (min-width: 1024px) { .wa-phone { margin: 0; } }
.wa-screen {
    background: #0a0a0a;
    border-radius: 24px;
    padding: 16px 12px;
    height: 540px;
    overflow: hidden;
    display: flex; flex-direction: column;
}
.wa-screen-header {
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    flex-shrink: 0;
}
.wa-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--brand, #404040);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
}
.wa-screen-header .name { font-weight: 600; font-size: 14px; }
.wa-screen-header .status { font-size: 11px; color: var(--cat-wa); }
.wa-messages { flex: 1; padding-top: 12px; display: flex; flex-direction: column; gap: 6px; overflow: hidden; }
.wa-msg { max-width: 80%; padding: 8px 12px; border-radius: 12px; font-size: 13px; line-height: 1.4; opacity: 0; animation: chatUp 0.4s forwards; }
.wa-msg-in { align-self: flex-start; background: #1e2429; color: #e7e7e7; border-bottom-left-radius: 4px; }
.wa-msg-out { align-self: flex-end; background: #005c4b; color: #fff; border-bottom-right-radius: 4px; }
.wa-msg time { display: block; font-size: 10px; opacity: 0.55; margin-top: 2px; text-align: right; }
.wa-msg-1 { animation-delay: 0.3s; }
.wa-msg-2 { animation-delay: 1.0s; }
.wa-msg-3 { animation-delay: 1.7s; }
.wa-msg-4 { animation-delay: 2.5s; }
.wa-msg-5 { animation-delay: 3.3s; }
.wa-msg-6 { animation-delay: 4.0s; }
.wa-typing { font-size: 11px; color: var(--cat-wa); padding-left: 6px; animation: chatUp 0.4s 4.6s forwards; opacity: 0; }
@keyframes chatUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ───── Rotating word (hero) ──────────────────────────────────────────── */
.rotating-wrapper { display: inline-block; position: relative; min-width: 240px; text-align: left; }
@media (max-width: 640px) { .rotating-wrapper { min-width: 180px; } }
.rotating-word {
    display: inline-block;
    opacity: 0; position: absolute; left: 0; top: 0;
    white-space: nowrap;
    color: var(--cat-accent-text);
    font-style: italic;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateY(12px);
}
.rotating-word.active { opacity: 1; position: relative; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════════════
   Scroll reveal — fade + slide-up ao entrar na viewport.

   Estratégia anti-flash:
   - <html> recebe class 'js-ready' inline no head (antes do body pintar)
   - CSS esconde elementos animáveis SÓ quando js-ready (sem JS = tudo
     visível default — fallback gracioso)
   - JS observer adiciona '.in-view' quando entram viewport → CSS anima

   Curva ease-out longa (0.8s) com translate maior (36px) pra ficar
   visualmente perceptível. Stagger até 4 pra grids/listas.
   ═══════════════════════════════════════════════════════════════════════ */

/* Auto-hide por padrão — qualquer elemento marcado .reveal (e seus
   variants) começa invisível DESDE que JS esteja ativo. */
html.js-ready .reveal,
html.js-ready .reveal-left,
html.js-ready .reveal-right,
html.js-ready .reveal-zoom,
html.js-ready .reveal-title {
    opacity: 0;
    will-change: opacity, transform;
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-ready .reveal             { transform: translateY(36px); }
html.js-ready .reveal-left        { transform: translateX(-40px); }
html.js-ready .reveal-right       { transform: translateX(40px); }
html.js-ready .reveal-zoom        { transform: scale(0.94); }
html.js-ready .reveal-title       { transform: translateY(24px); }

html.js-ready .reveal.in-view,
html.js-ready .reveal-left.in-view,
html.js-ready .reveal-right.in-view,
html.js-ready .reveal-title.in-view {
    opacity: 1;
    transform: translateY(0) translateX(0);
}
html.js-ready .reveal-zoom.in-view {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays — aplica-se a qualquer reveal-* via classe extra */
html.js-ready .reveal-stagger-1,
html.js-ready .reveal-left.reveal-stagger-1,
html.js-ready .reveal-right.reveal-stagger-1,
html.js-ready .reveal-zoom.reveal-stagger-1 { transition-delay: 0.08s; }
html.js-ready .reveal-stagger-2,
html.js-ready .reveal-left.reveal-stagger-2,
html.js-ready .reveal-right.reveal-stagger-2,
html.js-ready .reveal-zoom.reveal-stagger-2 { transition-delay: 0.18s; }
html.js-ready .reveal-stagger-3,
html.js-ready .reveal-left.reveal-stagger-3,
html.js-ready .reveal-right.reveal-stagger-3,
html.js-ready .reveal-zoom.reveal-stagger-3 { transition-delay: 0.28s; }
html.js-ready .reveal-stagger-4,
html.js-ready .reveal-left.reveal-stagger-4,
html.js-ready .reveal-right.reveal-stagger-4,
html.js-ready .reveal-zoom.reveal-stagger-4 { transition-delay: 0.38s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html.js-ready .reveal,
    html.js-ready .reveal-left,
    html.js-ready .reveal-right,
    html.js-ready .reveal-zoom,
    html.js-ready .reveal-title {
        opacity: 1;
        transform: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   Auto-hide selectors — cards/elementos que ANIMAM ao entrar viewport
   sem precisar de class .reveal manual no template.
   Igual ao bloco acima, mas via seletores diretos (CSS sozinho cuida).
   ═══════════════════════════════════════════════════════════════════════ */
html.js-ready .wp-card,
html.js-ready .city-card,
html.js-ready .service-card,
html.js-ready .stat-card,
html.js-ready .wp-faq-item,
html.js-ready .cat-footer-col,
html.js-ready .wp-section > .wp-section-inner > .wp-section-title,
html.js-ready .wp-meet-photo,
html.js-ready .wp-meet-text,
html.js-ready .wp-insta-reel,
html.js-ready .wp-mentoria-badge,
html.js-ready .wp-mentoria-text,
html.js-ready .wp-undecided-text {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
html.js-ready .wp-card.in-view,
html.js-ready .city-card.in-view,
html.js-ready .service-card.in-view,
html.js-ready .stat-card.in-view,
html.js-ready .wp-faq-item.in-view,
html.js-ready .cat-footer-col.in-view,
html.js-ready .wp-section > .wp-section-inner > .wp-section-title.in-view,
html.js-ready .wp-meet-photo.in-view,
html.js-ready .wp-meet-text.in-view,
html.js-ready .wp-insta-reel.in-view,
html.js-ready .wp-mentoria-badge.in-view,
html.js-ready .wp-mentoria-text.in-view,
html.js-ready .wp-undecided-text.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger automático em filhos do mesmo grid/lista.
   Aplica via :nth-child em grids comuns. */
html.js-ready .wp-grid > .wp-card:nth-child(1).in-view,
html.js-ready .cities-grid > .city-card:nth-child(1).in-view,
html.js-ready .services-grid > .service-card:nth-child(1).in-view,
html.js-ready .stats-grid > .stat-card:nth-child(1).in-view,
html.js-ready .cat-footer-grid > .cat-footer-col:nth-child(1).in-view {
    transition-delay: 0s;
}
html.js-ready .wp-grid > .wp-card:nth-child(2),
html.js-ready .cities-grid > .city-card:nth-child(2),
html.js-ready .services-grid > .service-card:nth-child(2),
html.js-ready .stats-grid > .stat-card:nth-child(2),
html.js-ready .cat-footer-grid > .cat-footer-col:nth-child(2),
html.js-ready .wp-faq-list > .wp-faq-item:nth-child(2) {
    transition-delay: 0.08s;
}
html.js-ready .wp-grid > .wp-card:nth-child(3),
html.js-ready .cities-grid > .city-card:nth-child(3),
html.js-ready .services-grid > .service-card:nth-child(3),
html.js-ready .stats-grid > .stat-card:nth-child(3),
html.js-ready .cat-footer-grid > .cat-footer-col:nth-child(3),
html.js-ready .wp-faq-list > .wp-faq-item:nth-child(3) {
    transition-delay: 0.16s;
}
html.js-ready .wp-grid > .wp-card:nth-child(4),
html.js-ready .wp-faq-list > .wp-faq-item:nth-child(4) {
    transition-delay: 0.24s;
}
html.js-ready .wp-grid > .wp-card:nth-child(5),
html.js-ready .wp-faq-list > .wp-faq-item:nth-child(5) {
    transition-delay: 0.32s;
}
html.js-ready .wp-grid > .wp-card:nth-child(n+6) {
    transition-delay: 0.40s;
}

@media (prefers-reduced-motion: reduce) {
    html.js-ready .wp-card,
    html.js-ready .city-card,
    html.js-ready .service-card,
    html.js-ready .stat-card,
    html.js-ready .wp-faq-item,
    html.js-ready .cat-footer-col,
    html.js-ready .wp-section > .wp-section-inner > .wp-section-title,
    html.js-ready .wp-meet-photo,
    html.js-ready .wp-meet-text,
    html.js-ready .wp-insta-reel,
    html.js-ready .wp-mentoria-badge,
    html.js-ready .wp-mentoria-text,
    html.js-ready .wp-undecided-text {
        opacity: 1;
        transform: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   GSAP TAKEOVER — quando html.gsap-on, GSAP controla tudo via inline
   style. Desliga a transition CSS pra não brigar com o RAF do GSAP
   (CSS transition tentando suavizar uma mudança que o GSAP já tá
   animando frame-a-frame = jitter visível).
   gsap.set() roda imediatamente após o gsap-on class, inlinando
   opacity:0 + transform inicial — sem flash.
   ═══════════════════════════════════════════════════════════════════════ */
html.gsap-on .wp-card,
html.gsap-on .city-card,
html.gsap-on .service-card,
html.gsap-on .stat-card,
html.gsap-on .wp-faq-item,
html.gsap-on .cat-footer-col,
html.gsap-on .wp-section > .wp-section-inner > .wp-section-title,
html.gsap-on .wp-meet-photo,
html.gsap-on .wp-meet-text,
html.gsap-on .wp-insta-reel,
html.gsap-on .wp-mentoria-badge,
html.gsap-on .wp-mentoria-text,
html.gsap-on .wp-undecided-text,
html.gsap-on .reveal,
html.gsap-on .reveal-left,
html.gsap-on .reveal-right,
html.gsap-on .reveal-zoom,
html.gsap-on .reveal-title,
html.gsap-on .wp-divider {
    transition: none !important;
}

/* Pre-hide do hero quando GSAP vai animar — evita flash do título
   visível no paint inicial antes do gsap.set() escondê-lo via inline.
   GSAP roda no body script e seta yPercent/autoAlpha, mas entre o paint
   do body e a execução do script há ~1 frame de gap. Esses opacity:0
   cobrem esse gap. */
html.gsap-on .wp-hero-video-subtitle,
html.gsap-on .wp-hero-ctas > *,
html.gsap-on .wp-hero-video-scroll,
html.gsap-on .wp-divider {
    opacity: 0;
}
/* Hero/section titles: as PALAVRAS ficam invisíveis (yPercent:110 do GSAP
   esconderia mas só após o JS rodar). Como o JS quebra o título em
   <span.word-wrap>, o overflow:hidden do wrap já cobre o yPercent.
   Antes do split rodar, escondemos o título inteiro só por 1 frame: */
html.gsap-on .wp-hero-video-title,
html.gsap-on .wp-section-title {
    opacity: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   KINETIC TYPOGRAPHY — word-split mask reveal.
   JS quebra títulos em <span.word-wrap><span.word>palavra</span></span>.
   .word-wrap é a máscara (overflow:hidden). .word translateY pra esconder
   e GSAP sobe pra yPercent:0. Sensação cinemática de "palavras subindo
   de baixo da linha" — kinetic typography clássica.
   ═══════════════════════════════════════════════════════════════════════ */
.wp-section-title .word-wrap,
.wp-hero-video-title .word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    /* padding-bottom pequeno pra não cortar descenders (g, j, p, q, y) */
    padding-bottom: 0.08em;
    /* margin-bottom negativo cancela o padding-bottom no fluxo do bloco */
    margin-bottom: -0.08em;
    line-height: inherit;
}
.wp-section-title .word,
.wp-hero-video-title .word {
    display: inline-block;
    will-change: transform;
    line-height: inherit;
}

/* =====================================================================
   WP-CLASSIC HOME — Estilo viniciusaraujoimoveis.com.br
   Substituiu o tema "luxury Compass/Sotheby's" anterior (commit c93d29e).
   Cores: branco/azul (#4268C1 / #0270F7), fontes Belgiano + Poppins.
   ===================================================================== */

/* Botão primário — gradient brand sutil + shadow brand-colored.
   Refinado pra fugir do feel 'azul chapado' de template. */
.cat-btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg,
        var(--brand, #4268C1) 0%,
        color-mix(in oklab, var(--brand, #4268C1) 78%, black) 100%);
    color: #FFFFFF !important;
    font-family: var(--font-sans);
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: var(--tracking-button);
    padding: 14px 28px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition:
        transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.2s ease;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.08),
        0 8px 20px -4px color-mix(in oklab, var(--brand, #4268C1) 45%, transparent);
    position: relative;
    overflow: hidden;
}
.cat-btn-primary::before {
    /* Highlight superior sutil (efeito 'glass') */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}
.cat-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.10),
        0 16px 32px -6px color-mix(in oklab, var(--brand, #4268C1) 55%, transparent);
    filter: brightness(1.05);
}
.cat-btn-primary:active {
    transform: translateY(0);
    filter: brightness(0.95);
}
.cat-btn-primary-lg {
    font-size: 16px;
    padding: 18px 36px;
}

/* Variant WhatsApp — verde próprio (#25D366) ao invés de brand azul.
   Use em CTAs que abrem WhatsApp. */
.cat-btn-whatsapp {
    background: linear-gradient(135deg,
        var(--cat-wa, #25D366) 0%,
        color-mix(in oklab, var(--cat-wa, #25D366) 80%, black) 100%);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.08),
        0 8px 20px -4px color-mix(in oklab, var(--cat-wa, #25D366) 50%, transparent);
}
.cat-btn-whatsapp:hover {
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.10),
        0 16px 32px -6px color-mix(in oklab, var(--cat-wa, #25D366) 60%, transparent);
}

/* Seção genérica */
.wp-section {
    padding: 56px 20px;
    background: var(--cat-bg);
}
.wp-section + .wp-section { border-top: 1px solid var(--cat-line); }
.wp-section-inner {
    max-width: var(--cat-max);
    margin: 0 auto;
}
.wp-section-title {
    font-family: var(--font-display);
    font-size: var(--fs-display-2);
    font-weight: 700;                          /* 600 → 700: Inter mais leve que Cormorant */
    line-height: var(--lh-display);
    letter-spacing: var(--tracking-display);
    color: var(--cat-text);
    margin: 0 0 32px;
    text-align: center;
}
/* Variante mais discreta (services, undecided, mentoria) — opcional via modifier */
.wp-section-title-sm {
    font-size: var(--fs-display-3);
    margin-bottom: 24px;
}
@media (min-width: 768px) {
    .wp-section { padding: 96px 40px; }
    .wp-section-title { margin-bottom: 44px; }
}

/* Section divider — dingbat (✦) brand entre seções premium.
   Use <div class="wp-divider" aria-hidden="true">✦</div> no template. */
.wp-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 240px;
    margin: 0 auto;
    color: var(--brand, #4268C1);
    font-size: 14px;
    line-height: 1;
    opacity: 0.65;
}
.wp-divider::before,
.wp-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        color-mix(in oklab, var(--brand, #4268C1) 35%, transparent) 50%,
        transparent 100%);
}

/* Section title com eyebrow ornament — line brand acima do título.
   Use .wp-section-title-ornament em vez de .wp-section-title. */
.wp-section-title-ornament {
    position: relative;
    padding-top: 28px;
}
.wp-section-title-ornament::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 2px;
    background: var(--brand, #4268C1);
    border-radius: 2px;
}
/* Variante left-aligned (pra listings que é text-align: left) */
.wp-listings-head .wp-section-title-ornament::before {
    left: 0;
    transform: none;
}

/* ───────── 0. BARRA DE FILTROS — pill estilo viniciusaraujo ─── */
.wp-filter-bar-wrap {
    background: var(--cat-bg);
    padding: 48px 16px 0;       /* sem margin-top negativo — não sobrepõe hero */
    margin-bottom: 32px;
    position: relative;
    z-index: 5;
}
@media (min-width: 768px) {
    .wp-filter-bar-wrap { padding: 64px 32px 0; margin-bottom: 48px; }
}
/* Painel de filtros — card com campos em chips bordados. */
.wp-filter-bar {
    max-width: var(--cat-max);
    margin: 0 auto;
    background: var(--cat-card);
    border: 1px solid var(--cat-line);
    border-radius: 22px;
    box-shadow: 0 18px 50px -16px rgba(15, 23, 42, 0.16),
                0 2px 6px rgba(15, 23, 42, 0.04);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (min-width: 960px) {
    .wp-filter-bar {
        flex-direction: row;
        align-items: flex-end;
        gap: 18px;
        padding: 22px 24px;
    }
}

/* Grid dos 4 campos */
.wp-filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    flex: 1;
    min-width: 0;
}
@media (min-width: 960px) {
    .wp-filter-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
}

.wp-filter-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
    margin: 0;
}
.wp-filter-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cat-text-soft);
    padding-left: 2px;
}

/* Chip: wrapper do select + price inputs compartilham o mesmo look */
.wp-filter-control-wrap,
.wp-filter-price-inputs {
    position: relative;
    height: 48px;
    border: 1.5px solid var(--cat-line);
    border-radius: 13px;
    background: var(--cat-bg-soft);
    display: flex;
    align-items: center;
    padding: 0 14px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.wp-filter-control-wrap:focus-within,
.wp-filter-price-inputs:focus-within {
    border-color: var(--brand, #4268C1);
    background: var(--cat-card);
    box-shadow: 0 0 0 3.5px color-mix(in oklab, var(--brand, #4268C1) 14%, transparent);
}

/* Chevron do select dentro do chip */
.wp-filter-control-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    width: 16px; height: 16px;
    transform: translateY(-50%);
    pointer-events: none;
    background: no-repeat center / contain
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
}

.wp-filter-control {
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    color: var(--cat-text);
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    padding-right: 20px;       /* espaço pro chevron */
}

.wp-filter-price-inputs { gap: 4px; }
.wp-filter-input {
    width: 100%;
    min-width: 0;
    flex: 1;
    border: 0;
    background: transparent;
    color: var(--cat-text);
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 500;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.wp-filter-input::placeholder { color: var(--cat-text-soft); font-weight: 400; }
.wp-filter-price-sep {
    color: var(--cat-line);
    font-size: 14px;
    flex-shrink: 0;
}

/* Botão de busca — sólido brand, alinhado à base dos campos */
.wp-filter-submit {
    height: 48px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--brand, #4268C1);
    color: #FFF;
    border: 0;
    border-radius: 13px;
    padding: 0 26px;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s, filter 0.2s;
    box-shadow: 0 8px 20px -6px color-mix(in oklab, var(--brand, #4268C1) 55%, transparent);
}
.wp-filter-submit:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 12px 26px -6px color-mix(in oklab, var(--brand, #4268C1) 65%, transparent);
}
.wp-filter-submit:active { transform: translateY(0); }
@media (max-width: 959px) {
    .wp-filter-submit { width: 100%; }
}

/* ───────── 1A. HERO VIDEO (YouTube fullscreen loop) ─────────── */
.wp-hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Em mobile (URL bar dinâmica) usa svh pra não saltar layout. */
    height: 100svh;
    min-height: 560px;
    margin-top: -72px;          /* sobe pra ficar atrás do header fixed */
    overflow: hidden;
    background: #0a0a0a;
    color: #fff;
    isolation: isolate;
}
@media (min-width: 1024px) {
    .wp-hero-video { margin-top: -80px; }
}

.wp-hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;       /* clique passa pra overlay/CTA */
    overflow: hidden;
}
/* iframe escalado pra cobrir o viewport sem letterbox (cover behavior).
   Usa o maior entre 100vw e 177.77vh (= 16/9 da altura) e centraliza.
   scale(1.35) crop a "chrome" do YouTube (barra de título + botão de
   player no topo) pra fora da área visível — sem ela vazando no header. */
.wp-hero-video-bg iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw;
    height: 56.25vw;            /* 16:9 da largura */
    min-width: 177.78vh;        /* 16:9 da altura — garante cover em telas altas */
    min-height: 100vh;
    transform: translate(-50%, -50%) scale(1.35);
    border: 0;
    pointer-events: none;       /* nunca interage → YouTube não mostra chrome de hover */
}

/* O overlay funciona como SHIELD: fica acima do iframe (z-index 1) e
   captura o ponteiro (pointer-events: auto), então o mouse nunca chega
   no player do YouTube — logo, nenhum controle/botão de play aparece.
   Os CTAs e o chevron ficam em z-index 2 (acima do overlay), então
   continuam clicáveis normalmente. */
.wp-hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: auto;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.25) 35%,
        rgba(0, 0, 0, 0.35) 65%,
        rgba(0, 0, 0, 0.85) 100%);
}

/* Hero content — bloco de texto estruturado com gap rhythm fixo.
   Hierarquia visual: eyebrow → title → subtitle → CTAs → trust signals.
   Cada elemento tem peso/tamanho específico, ancorados pelo marker brand. */
.wp-hero-video-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: var(--cat-max);
    margin: 0 auto;
    padding: 96px 20px 120px;       /* extra bottom pra não colar no chevron */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;                          /* gap controlado por margin nos children */
}
@media (min-width: 768px) {
    .wp-hero-video-content { padding: 120px 40px 140px; }
}

/* Eyebrow — pequeno marker brand + label. Âncora visual no topo. */
.wp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.wp-hero-eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--brand, #4268C1);
    border-radius: 2px;
    box-shadow: 0 0 12px color-mix(in oklab, var(--brand, #4268C1) 60%, transparent);
}
.wp-hero-eyebrow-label {
    display: inline-block;
    line-height: 1;
}

.wp-hero-video-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 76px);
    font-weight: 800;                    /* Inter precisa de 800 pra peso de hero */
    line-height: 1.02;
    letter-spacing: -0.035em;            /* Inter tighter em sizes grandes */
    margin: 0 0 18px;
    color: #ffffff;
    max-width: 18ch;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.wp-hero-video-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 36px;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    max-width: 40ch;
}

/* CTAs — par de botões fechando o bloco de texto */
.wp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
}
.wp-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: var(--tracking-button);
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.25s ease;
}
.wp-hero-cta:hover { transform: translateY(-2px); }

/* Primary CTA — glass over hero (white tonal com backdrop blur) */
.wp-hero-cta-primary {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.wp-hero-cta-primary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.50);
}
.wp-hero-cta-primary svg { transition: transform 0.25s ease; }
.wp-hero-cta-primary:hover svg { transform: translateX(4px); }

/* WhatsApp CTA — verde gradient (mesmo padrão do .cat-btn-whatsapp) */
.wp-hero-cta-whatsapp {
    background: linear-gradient(135deg,
        var(--cat-wa, #25D366) 0%,
        color-mix(in oklab, var(--cat-wa, #25D366) 80%, black) 100%);
    color: #fff !important;
    border: 1px solid color-mix(in oklab, var(--cat-wa, #25D366) 60%, transparent);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.12),
        0 12px 28px -8px color-mix(in oklab, var(--cat-wa, #25D366) 55%, transparent);
}
.wp-hero-cta-whatsapp:hover {
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.16),
        0 20px 40px -8px color-mix(in oklab, var(--cat-wa, #25D366) 65%, transparent);
}

/* Trust signals — números pequenos com separator divider |. Aparece se
   o branding tem years_experience ou sales_count. Reforça credibilidade. */
.wp-hero-trust {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 56px 0 0;
    color: rgba(255, 255, 255, 0.85);
}
.wp-hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    padding-right: 28px;
}
.wp-hero-trust-item + .wp-hero-trust-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(255, 255, 255, 0.22);
}
.wp-hero-trust-item:last-child { padding-right: 0; }
.wp-hero-trust-num {
    font-family: var(--font-sans);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 700;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.wp-hero-trust-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 600px) {
    .wp-hero-trust { gap: 20px; }
    .wp-hero-trust-item { padding-right: 20px; }
    .wp-hero-trust-item + .wp-hero-trust-item::before { left: -20px; }
}

/* Indicador de scroll — mais discreto agora que o bloco de texto tem CTAs.
   Pill menor, opacity baixa, anima sutil. Não compete com a hierarquia. */
.wp-hero-video-scroll {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: 36px; height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.75);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
    animation: wp-hero-bounce 3s ease-in-out infinite;
    opacity: 0.85;
}
.wp-hero-video-scroll:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    opacity: 1;
}
@keyframes wp-hero-bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 8px); }
}

/* Em mobile (~iPhone landscape e tablet portrait), reduz altura do hero
   pra não engolir a tela toda em devices baixos */
@media (max-height: 600px) {
    .wp-hero-video { height: 92vh; min-height: 440px; }
    .wp-hero-video-content { padding-top: 80px; padding-bottom: 72px; }
}

/* ───────── 1. HERO CAROUSEL (legacy) ─────────────────────────── */
.wp-hero {
    background: var(--cat-bg);
    padding: 32px 16px 16px;
}
@media (min-width: 768px) { .wp-hero { padding: 48px 32px 24px; } }

.hero-swiper {
    max-width: var(--cat-max);
    margin: 0 auto;
    padding-bottom: 56px;
    overflow: visible;
}
.hero-swiper .swiper-slide { height: auto; }
.hero-card {
    display: block;
    background: var(--cat-card);
    border: 1px solid var(--cat-line);
    border-radius: var(--cat-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    color: inherit;
}
.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
}
.hero-card-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--cat-bg-soft);
    overflow: hidden;
}
.hero-card-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hero-card:hover .hero-card-photo img { transform: scale(1.04); }
.hero-card-photo-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--cat-line);
    background: var(--cat-bg-soft);
}
.hero-card-badge {
    position: absolute; top: 12px; left: 12px;
    background: rgba(0, 0, 0, 0.72);
    color: #FFF;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
}
.hero-card-body { padding: 18px 20px 20px; }
/* .hero-card-eyebrow agora compartilha estilo com .wp-card-eyebrow (alias base) */
.hero-card-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 12px;
    color: var(--cat-text);
}
.hero-card-meta {
    display: flex; flex-wrap: wrap; gap: 4px 10px;
    font-size: 13px;
    color: var(--cat-text-soft);
}
.hero-card-meta span:not(:last-child)::after { content: "·"; margin-left: 10px; opacity: 0.5; }

/* Swiper navigation (estilo discreto) */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 44px; height: 44px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    border: 1px solid var(--cat-line);
    color: var(--cat-text);
    margin-top: -22px;
    transition: background 0.2s, box-shadow 0.2s;
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: #FFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.hero-swiper .swiper-pagination-bullet {
    background: var(--cat-line);
    opacity: 1;
    transition: background 0.2s, width 0.2s;
}
.hero-swiper .swiper-pagination-bullet-active {
    background: var(--brand, #4268C1);
    width: 24px;
    border-radius: 4px;
}

.wp-hero-empty {
    background: var(--cat-bg-soft);
    border-radius: var(--cat-radius);
    padding: 64px 24px;
    max-width: var(--cat-max);
    margin: 0 auto;
    text-align: center;
}
.wp-hero-empty-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 12px;
}
.wp-hero-empty-subtitle {
    color: var(--cat-text-soft);
    font-size: 17px;
    margin: 0 0 28px;
}

/* ───────── 2. CIDADES ─────────────────────────────────────── */
.wp-cities { background: var(--cat-bg-soft); }
.cities-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .cities-grid-2 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.city-card {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;          /* 4:3 → 16:10 cinematic landscape */
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--cat-radius);
    overflow: hidden;
    color: #FFF;
    transition:
        transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    isolation: isolate;
}
.city-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.30);
}
.city-card:hover .city-card-body {
    transform: translateY(-2px);
}
.city-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.20) 50%,
        rgba(0, 0, 0, 0.82) 100%);
    pointer-events: none;
    transition: background 0.4s ease;
}
.city-card:hover .city-card-overlay {
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.10) 0%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.85) 100%);
}
.city-card-body {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 36px;
    display: flex; flex-direction: column; justify-content: flex-end;
    gap: 6px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.city-card-eyebrow {
    font-family: var(--font-sans);
    font-size: var(--fs-eyebrow);
    font-weight: 500;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.92);
}
.city-card-name {
    font-family: var(--font-display);
    font-size: clamp(42px, 4.5vw, 64px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
    color: #FFF;
}
.city-card-count {
    font-family: var(--font-sans);
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 0.01em;
}
/* Arrow icon indicando clicabilidade no canto superior direito */
.city-card::after {
    content: '→';
    position: absolute;
    top: 28px; right: 28px;
    z-index: 2;
    width: 44px; height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    transition:
        background 0.3s ease,
        transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.city-card:hover::after {
    background: rgba(255, 255, 255, 0.32);
    transform: translate(4px, -4px);
}

/* ───────── 3. AINDA NÃO DECIDIU? ─────────────────────────── */
.wp-undecided { background: var(--cat-bg); }
.wp-undecided-inner {
    text-align: center;
    max-width: 640px;
}
.wp-undecided-text {
    color: var(--cat-text-soft);
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 28px;
}

/* ───────── 4. SERVIÇOS ─────────────────────────────────── */
.wp-services { background: var(--cat-bg-soft); }
.services-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.service-card {
    position: relative;
    background: var(--cat-card);
    border-radius: var(--cat-radius);
    padding: 44px 32px 40px;
    text-align: center;
    color: inherit;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 1px 1px rgba(15, 23, 42, 0.02);
    transition:
        transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    isolation: isolate;
}
/* Accent line brand emerge no topo (similar wp-card mas no topo, não embaixo) */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand, #4268C1);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 24px 48px -8px rgba(15, 23, 42, 0.10),
        0 8px 16px -4px rgba(15, 23, 42, 0.05);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 64px; height: 64px;
    margin: 0 auto 24px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg,
        color-mix(in oklab, var(--brand, #4268C1) 14%, var(--cat-card)) 0%,
        color-mix(in oklab, var(--brand, #4268C1) 6%, var(--cat-card)) 100%);
    color: var(--brand, #4268C1);
    border-radius: 18px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease;
}
.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-3deg);
    background: linear-gradient(135deg,
        color-mix(in oklab, var(--brand, #4268C1) 18%, var(--cat-card)) 0%,
        color-mix(in oklab, var(--brand, #4268C1) 10%, var(--cat-card)) 100%);
}
.service-title {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    font-weight: 600;
    line-height: var(--lh-h3);
    letter-spacing: var(--tracking-h3);
    margin: 0 0 14px;
    color: var(--cat-text);
}
.service-text {
    color: var(--cat-text-soft);
    font-size: 15px;
    line-height: var(--lh-body);
    margin: 0;
}

/* ───────── 5. STATS ───────────────────────────────────── */
.wp-stats { background: var(--cat-bg); }
.stats-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    text-align: center;
}
@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}
.stat-card { padding: 0 16px; }
/* Stats — números em sans pesado pra feel contemporâneo
   (serif itálico antes parecia "anos 90") */
.stat-num {
    font-family: var(--font-sans);
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 700;
    line-height: 1;
    color: var(--brand, #4268C1);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    font-feature-settings: 'tnum' 1;
}
.stat-label {
    font-family: var(--font-sans);
    font-size: var(--fs-body-sm);
    font-weight: 500;
    color: var(--cat-text-soft);
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
}

/* ───────── 6. LISTING IMÓVEIS (sem preço visível) ──────── */
.wp-listings { background: var(--cat-bg-soft); }
.wp-listings-head {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}
.wp-listings-head .wp-section-title { margin: 0; text-align: left; }
.wp-listings-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand, #4268C1);
    letter-spacing: 0.02em;
    transition: gap 0.2s ease;
}
.wp-listings-link:hover { gap: 10px; }

.wp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}
@media (min-width: 1024px) { .wp-grid { gap: 28px; } }

/* ─── Property card (Zillow/Compass-style) ──────────────────────
   Foto cinematic 3:2 dominante + body respirável + hover sofisticado
   com lift, zoom da foto, accent line brand emergindo embaixo. */
.wp-card {
    position: relative;
    background: var(--cat-card);
    border-radius: var(--cat-radius);
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04),
                0 1px 1px rgba(15, 23, 42, 0.02);
    transition:
        transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: inherit;
    isolation: isolate;
}
/* Accent line brand emerge embaixo no hover (scaleX de 0 → 1) */
.wp-card::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: var(--brand, #4268C1);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2;
}
.wp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -8px rgba(15, 23, 42, 0.12),
                0 8px 16px -4px rgba(15, 23, 42, 0.06);
}
.wp-card:hover::after {
    transform: scaleX(1);
}

.wp-card-photo {
    position: relative;
    aspect-ratio: 3 / 2;          /* 4:3 → 3:2 cinematic */
    background: linear-gradient(135deg,
        color-mix(in oklab, var(--brand, #4268C1) 6%, var(--cat-bg-soft)) 0%,
        var(--cat-bg-soft) 100%);
    overflow: hidden;
}
.wp-card-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.wp-card:hover .wp-card-photo img { transform: scale(1.06); }
.wp-card-photo-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--cat-line);
    opacity: 0.55;
}

/* Status badge — pill translucent c/ blur, mais discreto que pílula preta */
.wp-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    color: var(--cat-text);
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    padding: 6px 11px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.wp-card-body { padding: 22px 22px 24px; }
/* Eyebrow base (pre-title uppercase) — brand color em fundo claro.
   .city-card-eyebrow é diferente (vai em fundo dark gradient, fica white). */
.wp-card-eyebrow,
.wp-meet-eyebrow,
.hero-card-eyebrow {
    font-family: var(--font-sans);
    font-size: var(--fs-eyebrow);
    font-weight: 600;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--brand, #4268C1);
    margin-bottom: 10px;
    display: inline-block;
}
.wp-card-title {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    font-weight: 600;
    line-height: var(--lh-h3);
    letter-spacing: var(--tracking-h3);
    margin: 0 0 14px;
    color: var(--cat-text);
    /* clamp pra 2 linhas no card */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wp-card-meta {
    display: flex; flex-wrap: wrap; gap: 4px 10px;
    font-size: 13px;
    color: var(--cat-text-soft);
}
.wp-card-meta span:not(:last-child)::after { content: "·"; margin-left: 10px; opacity: 0.5; }

/* Linha de specs com ícones — m² / quartos / banh. / vagas.
   Padding-top com fio sutil pra separar do título visualmente. */
.wp-specs {
    display: flex; flex-wrap: wrap;
    gap: 8px 0;
    margin: 0 0 16px;
    padding-top: 14px;
    border-top: 1px solid color-mix(in oklab, var(--cat-line) 70%, transparent);
    color: var(--cat-text-soft);
    font-size: 13.5px;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}
.wp-spec {
    display: inline-flex; align-items: center; gap: 7px;
    white-space: nowrap;
    padding: 0 14px;
    border-right: 1px solid color-mix(in oklab, var(--cat-line) 60%, transparent);
}
.wp-spec:first-child { padding-left: 0; }
.wp-spec:last-child { border-right: 0; padding-right: 0; }
.wp-spec svg { color: var(--brand, var(--cat-text-soft)); opacity: 0.75; flex-shrink: 0; }

/* Preço — sans com tabular nums pra alinhamento e impacto contemporâneo.
   "R$" e número no mesmo peso (700) e cor — visual coeso e sólido. */
.wp-card-price {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    color: var(--cat-text);
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0;
    font-variant-numeric: tabular-nums;
    font-feature-settings: 'tnum' 1;
}

.wp-empty {
    background: var(--cat-card);
    border: 1px solid var(--cat-line);
    border-radius: var(--cat-radius);
    padding: 56px 24px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.wp-empty-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 12px;
}
.wp-empty-text {
    color: var(--cat-text-soft);
    margin: 0 0 24px;
}

/* ───────── 7+9. SOCIAL (YouTube / Instagram) ─────────── */
.wp-youtube { background: var(--cat-bg); }
.wp-instagram { background: var(--cat-bg-soft); }
.wp-social-inner {
    display: flex; flex-direction: column;
    gap: 36px;
    align-items: center;
}
@media (min-width: 900px) {
    .wp-social-inner { flex-direction: row; gap: 56px; align-items: center; }
    .wp-social-inner-reverse { flex-direction: row-reverse; }
}
.wp-social-text { flex: 1; max-width: 560px; text-align: center; }
@media (min-width: 900px) { .wp-social-text { text-align: left; } }
.wp-social-text .wp-section-title { text-align: inherit; }
.wp-social-desc {
    color: var(--cat-text-soft);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 28px;
}
.wp-social-card {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    border-radius: var(--cat-radius);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 18px;
    color: #FFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.wp-social-card:hover {
    transform: scale(1.02);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.wp-social-card-youtube { background: #FF0000; }
.wp-social-card-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.wp-social-card-icon { color: #FFF; opacity: 0.95; }
.wp-social-card-label {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    letter-spacing: 0.01em;
}

/* Instagram Reel-style — vídeo 9:16 vertical com overlay gradient e
   badge do handle. Imita a apresentação de um Reel no feed. */
.wp-insta-reel {
    flex-shrink: 0;
    position: relative;
    width: 280px;
    aspect-ratio: 9 / 16;
    border-radius: 22px;            /* mais arredondado, feel mobile */
    overflow: hidden;
    background: #0a0a0a;
    color: #fff;
    text-decoration: none;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.12),
        0 24px 56px -12px rgba(0, 0, 0, 0.30);
    transition:
        transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    isolation: isolate;
}
@media (min-width: 768px) {
    .wp-insta-reel { width: 320px; }
}
.wp-insta-reel:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.16),
        0 36px 80px -12px rgba(0, 0, 0, 0.40);
}
.wp-insta-reel-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.wp-insta-reel-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.00) 30%,
        rgba(0, 0, 0, 0.10) 70%,
        rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}
/* Badge do handle no canto inferior — pill translucent com ícone IG */
.wp-insta-reel-badge {
    position: absolute;
    z-index: 2;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 12px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.wp-insta-reel-badge svg { color: #fff; opacity: 0.95; }

/* YouTube video embed — aspect-ratio 16:9, cantos arredondados */
.wp-video-embed {
    flex: 1;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    border-radius: var(--cat-radius);
    overflow: hidden;
    background: #000;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.wp-video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ───────── 8. MEET (Converse com) ───────────────────── */
.wp-meet { background: var(--cat-bg); }
.wp-meet-inner {
    display: flex; flex-direction: column;
    gap: 36px;
    align-items: center;
}
@media (min-width: 900px) {
    .wp-meet-inner { flex-direction: row; gap: 64px; align-items: center; }
}
.wp-meet-photo {
    flex-shrink: 0;
    position: relative;
    width: 240px;
    aspect-ratio: 1;
}
@media (min-width: 1024px) { .wp-meet-photo { width: 320px; } }
.wp-meet-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--cat-card);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.wp-meet-photo-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--brand, #4268C1);
    color: #FFF;
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.wp-meet-creci {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translate(-50%, 40%);
    background: var(--brand, #4268C1);
    color: #FFF;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
}
.wp-meet-text { flex: 1; max-width: 600px; text-align: center; }
@media (min-width: 900px) { .wp-meet-text { text-align: left; } }
.wp-meet-text .wp-section-title { text-align: inherit; margin-bottom: 20px; }
/* .wp-meet-eyebrow agora compartilha estilo base com .wp-card-eyebrow (alias) */
.wp-meet-bio {
    color: var(--cat-text-soft);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 28px;
}

/* Form de contato dentro do wp-meet */
.wp-contact-form {
    display: flex; flex-direction: column;
    gap: 14px;
    max-width: 480px;
    margin: 0 auto;
}
@media (min-width: 900px) { .wp-contact-form { margin: 0; } }
.wp-contact-input {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid color-mix(in oklab, var(--cat-line) 70%, transparent);
    border-radius: 10px;
    background: var(--cat-bg-soft);
    color: var(--cat-text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
    resize: vertical;
}
.wp-contact-input:hover {
    border-color: color-mix(in oklab, var(--cat-line) 100%, transparent);
    background: var(--cat-card);
}
.wp-contact-input:focus {
    outline: none;
    border-color: var(--brand, var(--cat-text));
    background: var(--cat-card);
    box-shadow:
        0 0 0 4px color-mix(in oklab, var(--brand, #4268C1) 12%, transparent),
        0 1px 2px rgba(0, 0, 0, 0.04);
}
.wp-contact-input::placeholder {
    color: var(--cat-text-soft);
    opacity: 0.7;
}

/* Form como card destacado — separa visualmente da bio, dá moldura.
   Resolve a "disposição estranha" de campos soltos empilhados. */
.wp-contact-card {
    background: var(--cat-card);
    border: 1px solid var(--cat-line);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 36px -14px rgba(15, 23, 42, 0.14);
    gap: 12px;
    max-width: 520px;
}
@media (min-width: 900px) { .wp-contact-card { margin: 4px 0 0; } }
.wp-contact-card-head { margin-bottom: 4px; }
.wp-contact-card-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--cat-text);
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}
.wp-contact-card-sub {
    font-size: 13.5px;
    color: var(--cat-text-soft);
    margin: 0;
    line-height: 1.5;
}
/* Nome + telefone lado a lado */
.wp-contact-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 480px) {
    .wp-contact-row { grid-template-columns: 1fr 1fr; }
}
.wp-contact-submit { width: 100%; margin-top: 4px; }

/* FAQ — accordion com <details>/<summary> */
.wp-faq { background: var(--cat-bg); }
.wp-faq-inner { max-width: 820px; }
.wp-faq-subtitle {
    text-align: center;
    color: var(--cat-text-soft);
    margin: -16px 0 32px;
    font-size: 15px;
}
.wp-faq-list {
    display: flex; flex-direction: column;
    gap: 12px;
}
.wp-faq-item {
    background: var(--cat-card);
    border: 1px solid var(--cat-line);
    border-radius: var(--cat-radius);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.wp-faq-item[open] {
    border-color: var(--brand, #4268C1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.wp-faq-question {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--cat-text);
    list-style: none;
    user-select: none;
    transition: color 0.2s;
}
.wp-faq-question::-webkit-details-marker { display: none; }
.wp-faq-question:hover { color: var(--brand, #4268C1); }
.wp-faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--brand, #4268C1) 12%, transparent);
    color: var(--brand, #4268C1);
    border-radius: 50%;
    font-size: 20px; font-weight: 400;
    line-height: 1;
    transition: transform 0.2s, background 0.2s;
}
.wp-faq-item[open] .wp-faq-icon {
    transform: rotate(45deg);
    background: var(--brand, #4268C1);
    color: #FFF;
}
.wp-faq-answer {
    padding: 0 24px 22px;
    color: var(--cat-text-soft);
    font-size: 14.5px;
    line-height: 1.7;
}

/* ───────── 10. MENTORIA — "Você não será cobrado*" ──── */
.wp-mentoria {
    background: linear-gradient(180deg, var(--cat-bg) 0%, var(--cat-bg-soft) 100%);
    border-top: 1px solid var(--cat-line);
}
.wp-mentoria-inner {
    text-align: center;
    max-width: 720px;
}
.wp-mentoria-text {
    color: var(--cat-text-soft);
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 24px;
}
/* Grupo CTA — badge "grátis" ancorado logo acima do botão, como um
   selo da ação. Antes o badge flutuava solto e ficava "perdido". */
.wp-mentoria-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
}
/* Badge e texto da mentoria sempre visíveis e sem transform residual —
   o reveal genérico (translateY/opacity) estava sobrepondo o badge no
   botão. Aqui forçamos estado final, animação fica só no título/seção. */
html.gsap-on .wp-mentoria-badge,
html.gsap-on .wp-mentoria-text,
html.js-ready .wp-mentoria-badge,
html.js-ready .wp-mentoria-text {
    opacity: 1 !important;
    transform: none !important;
}
.wp-mentoria-badge {
    /* Verde tonal (WhatsApp) — amarra visualmente ao botão verde abaixo,
       comunicando "isto é grátis → agende". */
    display: inline-flex; align-items: center; gap: 7px;
    background: color-mix(in oklab, var(--cat-wa, #16A34A) 12%, transparent);
    color: color-mix(in oklab, var(--cat-wa, #16A34A) 75%, black);
    font-family: var(--font-sans);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid color-mix(in oklab, var(--cat-wa, #16A34A) 30%, transparent);
}
.wp-mentoria-badge sup { font-size: 0.8em; }
.wp-mentoria-disclaimer {
    font-size: 11.5px;
    color: var(--cat-text-soft);
    margin: 24px auto 0;
    max-width: 560px;
    line-height: 1.5;
}
.wp-mentoria-disclaimer sup { font-size: 0.85em; }


.wp-price-from{font-size:.72em;font-weight:500;opacity:.7}
