/* ============================================================
   FBC Imóveis — Premium DOM-Real v20260508f
   Seletores 100% validados contra o HTML real do index.html.
   GPU-friendly. Zero CLS. Zero JS extra.

   MAPA DO DOM (verificado):
   header.navbar > div.navbar-container > a.logo > span.brand-name
                                        > nav.nav-menu > ul > li > a
   section.hero  > div.hero-content > h1 + p.hero-subtitle
   section.search-section > div.container > form.search-form
   section.featured-properties > div.container > div.properties-grid
     > article.property-card > div.property-image + div.property-content
       > div.property-tags > span.tag
       > h3
       > div.property-price > span   ← preço aqui, não no div
       > div.property-details > div.property-detail
       > div.property-location
       > a.property-cta-link (inline styles)
   section.why-choose > div.benefits-grid > article.benefit-card
   section.how-it-works > div.steps-container > article.step > div.step-number
   section.about-section > div.about-content > div.about-text
                         > div.about-signature
                         > div.about-highlights > div.highlight-item
   section.contact-form-section > form.contact-form
   section.neighborhoods-section > div.neighborhoods-grid > a.neighborhood-card
   section.property-types-section > div.neighborhoods-grid > a.neighborhood-card (inline!)
   section.cities-section > div.neighborhoods-grid > a.neighborhood-card (inline!)
   section#depoimentos > div.container > div > article (inline styles!)
   section#faq > div.container > div > div (inline styles!)
   section[aria-labelledby="blog-heading"] > div.container > div > a (inline styles!)
   footer.footer > div.footer-content > div.footer-brand
               > div.footer-section > div.footer-social-links > a.social-icon
   .whatsapp-float (fixed, defined in styles.css)
   ============================================================ */

/* ----------------------------------------------------------
   VARIÁVEIS LUXURY — 2 camadas max
   ---------------------------------------------------------- */
:root {
    --shadow-card-rest:
        0 2px 8px  rgba(0,0,0,0.06),
        0 8px 24px rgba(14,165,233,0.09);
    --shadow-card-hover:
        0 6px 20px rgba(14,165,233,0.14),
        0 20px 48px rgba(14,165,233,0.10);
    --easing-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
    --easing-smooth:  cubic-bezier(0.22, 1, 0.36, 1);
    --easing-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----------------------------------------------------------
   1. NAVBAR — glass leve, performance-safe
   ---------------------------------------------------------- */
.navbar {
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    background: rgba(255,255,255,0.88) !important;
    border-bottom: 1px solid rgba(14,165,233,0.12) !important;
    box-shadow:
        0 1px 0   rgba(255,255,255,0.80),
        0 4px 16px rgba(14,165,233,0.08) !important;
    transition: box-shadow 0.3s var(--easing-smooth),
                background 0.3s var(--easing-smooth);
}
.navbar.scrolled,
.navbar[data-scrolled] {
    background: rgba(255,255,255,0.97) !important;
    box-shadow:
        0 1px 0   rgba(255,255,255,0.95),
        0 4px 20px rgba(14,165,233,0.10) !important;
}
.navbar-container {
    padding: 18px 0;
}

/* ----------------------------------------------------------
   2. BRAND & LOGO
   ---------------------------------------------------------- */
.brand-name {
    letter-spacing: -0.05em;
    font-weight: 800;
}
.logo {
    transition: opacity 0.25s var(--easing-smooth),
                transform 0.25s var(--easing-smooth);
}
.logo:hover {
    opacity: 0.82;
    transform: translateY(-1px);
}

/* ----------------------------------------------------------
   3. NAV LINKS — underline animado
   ---------------------------------------------------------- */
.nav-menu a {
    position: relative;
    letter-spacing: 0.02em;
    font-size: 0.92rem;
    font-weight: 500;
    transform: none !important;
    transition: color 0.25s var(--easing-smooth) !important;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), #22d3ee);
    border-radius: 2px;
    transition: transform 0.30s var(--easing-spring);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: translateX(-50%) scaleX(1);
}
/* CTA button no nav — sem underline */
.nav-menu a.cta-button::after {
    display: none;
}

/* ----------------------------------------------------------
   4. HEADER WHATSAPP
   ---------------------------------------------------------- */
.header-whatsapp {
    border-radius: 30px;
    letter-spacing: 0.02em;
    font-size: 0.88rem;
    padding: 9px 18px;
    border: 1px solid rgba(37,211,102,0.28);
    transition:
        background 0.25s var(--easing-smooth),
        box-shadow 0.25s var(--easing-smooth),
        transform 0.25s var(--easing-spring);
}
.header-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37,211,102,0.20);
}

/* ----------------------------------------------------------
   5. HERO — editorial luxury
      DOM real: section.hero > div.hero-content > h1 + p.hero-subtitle
   ---------------------------------------------------------- */
.hero {
    padding: 120px 20px 140px;
    min-height: 420px; /* preserva o valor do critical CSS */
}
.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    letter-spacing: -0.04em;
    line-height: 1.14;
    font-weight: 800;
    margin-bottom: 22px;
}
/* p.hero-subtitle é o único <p> dentro de .hero-content */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.16rem);
    line-height: 1.75;
    opacity: 0.90;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 0.004em;
    font-weight: 400;
}

/* ----------------------------------------------------------
   6. SEARCH SECTION — glass leve
      DOM real: section.search-section
   ---------------------------------------------------------- */
.search-section {
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    background: rgba(255,255,255,0.94) !important;
    border: 1px solid rgba(14,165,233,0.16) !important;
    border-radius: 24px !important;
    box-shadow:
        0 4px 16px rgba(14,165,233,0.10),
        0 16px 48px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.95) !important;
    padding: 44px 40px !important;
    margin: -48px auto 80px !important;
}

/* ----------------------------------------------------------
   7. FORM LABELS — editorial uppercase
      DOM real: .form-group > label
   ---------------------------------------------------------- */
.form-group label {
    font-size: 0.78rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
    border-width: 1.5px;
    border-radius: 14px;
    font-size: 0.96rem;
    padding: 13px 16px;
    background: #fafcfe;
    transition:
        border-color 0.25s var(--easing-smooth),
        box-shadow 0.25s var(--easing-smooth),
        background 0.25s var(--easing-smooth);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #ffffff;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(14,165,233,0.10);
}

/* ----------------------------------------------------------
   8. BUTTONS — luxury
      DOM real: button.btn-search, a.btn-primary, button[type=submit].btn-primary
   ---------------------------------------------------------- */
.btn-primary,
.btn-search {
    letter-spacing: 0.05em;
    font-size: 0.90rem;
    font-weight: 700;
    border-radius: 14px;
    text-transform: uppercase;
    transition:
        transform 0.28s var(--easing-spring),
        box-shadow 0.28s var(--easing-smooth);
}
.btn-primary {
    padding: 16px 44px;
    box-shadow: 0 6px 20px rgba(14,165,233,0.24);
}
.btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(14,165,233,0.30) !important;
}
.btn-search {
    letter-spacing: 0.04em;
    padding: 14px 32px;
}
.btn-search:hover {
    transform: translateY(-2px);
}
.cta-button {
    letter-spacing: 0.04em !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
}

/* ----------------------------------------------------------
   9. SECTION HEADINGS — hierarchy editorial
      DOM real: h2 dentro de cada section com classe
   ---------------------------------------------------------- */
.featured-properties h2,
.why-choose h2,
.how-it-works h2,
.about-section h2,
.contact-form-section h2 {
    letter-spacing: -0.04em;
    line-height: 1.12;
}
.featured-properties h2,
.why-choose h2,
.how-it-works h2 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 800;
}
.section-subtitle {
    font-size: 1.00rem;
    letter-spacing: 0.01em;
    line-height: 1.65;
    max-width: 580px;
}

/* ----------------------------------------------------------
   10. FEATURED PROPERTIES — section
   ---------------------------------------------------------- */
.featured-properties {
    padding: 90px 20px;
    border-radius: 28px;
}
.properties-grid {
    gap: 28px;
}

/* ----------------------------------------------------------
   11. PROPERTY CARDS — luxury
       DOM real: article.property-card (JS-gerado)
   ---------------------------------------------------------- */
.property-card {
    border-radius: 20px;
    border: 1px solid rgba(14,165,233,0.10);
    box-shadow: var(--shadow-card-rest);
    background: #ffffff;
    transition:
        transform 0.38s var(--easing-spring),
        box-shadow 0.38s var(--easing-smooth),
        border-color 0.28s ease;
}
.property-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(14,165,233,0.22);
}

/* Imagem — DOM real: div.property-image[style="position:relative"] */
.property-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.property-image img {
    transition: transform 0.60s var(--easing-premium);
}
.property-card:hover .property-image img {
    transform: scale(1.04);
}
/* Overlay sutil no hover — position:relative já vem inline no JS */
.property-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.20) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.38s var(--easing-smooth);
    pointer-events: none;
}
.property-card:hover .property-image::after {
    opacity: 1;
}
.property-content {
    padding: 24px 22px 20px;
}

/* ----------------------------------------------------------
   12. CARD TIPOGRAFIA
       DOM real: .property-card > div.property-content > h3
                                > div.property-price > span  ← texto aqui
   ---------------------------------------------------------- */
.property-card h3 {
    font-size: 1.04rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
    margin-bottom: 6px;
    color: var(--primary-color);
}
/* O preço está no span DENTRO de .property-price */
.property-price {
    font-size: 1.48rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 14px;
}
.property-price span {
    background: linear-gradient(120deg, var(--secondary-color) 0%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
}
.property-details {
    font-size: 0.85rem;
    gap: 8px 12px;
}
/* CTA link inline do card — apenas radius e transition */
.property-cta-link {
    border-radius: 10px !important;
    letter-spacing: 0.02em !important;
    font-weight: 700 !important;
    transition: background 0.22s ease, transform 0.22s var(--easing-spring) !important;
}
.property-cta-link:hover {
    transform: translateY(-1px) !important;
}

/* ----------------------------------------------------------
   13. TAGS — pill editorial
       DOM real: span.tag dentro de div.property-tags
   ---------------------------------------------------------- */
.tag {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 3px 11px;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(14,165,233,0.10), rgba(14,165,233,0.20));
    border: 1px solid rgba(14,165,233,0.26);
}

/* ----------------------------------------------------------
   14. WHY CHOOSE — section + benefit cards
       DOM real: section.why-choose > div.benefits-grid > article.benefit-card
   ---------------------------------------------------------- */
.why-choose {
    padding: 90px 20px;
    border-radius: 28px;
}
.benefits-grid {
    gap: 26px;
    margin-top: 48px;
}
.benefit-card {
    border-radius: 20px;
    border: 1px solid rgba(14,165,233,0.09);
    box-shadow: var(--shadow-card-rest);
    padding: 34px 28px;
    transition:
        transform 0.38s var(--easing-spring),
        box-shadow 0.38s var(--easing-smooth),
        border-color 0.28s ease;
}
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(14,165,233,0.20);
}
.benefit-icon {
    font-size: 2.6rem;
    margin-bottom: 16px;
    display: block;
}
.benefit-card h3 {
    font-size: 1.06rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.benefit-card p {
    font-size: 0.93rem;
    line-height: 1.65;
}

/* ----------------------------------------------------------
   15. HOW IT WORKS
       DOM real: section.how-it-works > div.steps-container > article.step
                 > div.step-number (número) + h3 + p
   ---------------------------------------------------------- */
.how-it-works {
    padding: 90px 20px;
    border-radius: 28px;
}
.step-number {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(14,165,233,0.28);
    transition:
        transform 0.35s var(--easing-spring),
        box-shadow 0.35s var(--easing-smooth);
}
.step:hover .step-number {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 12px 32px rgba(14,165,233,0.38);
}
.step h3 {
    font-size: 1.04rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.step p {
    font-size: 0.93rem;
    line-height: 1.65;
}

/* ----------------------------------------------------------
   16. TESTIMONIALS — override inline styles
       DOM real: section#depoimentos > div.container > div > article[style="..."]
       Inline styles: background, border-radius, padding, box-shadow
       → precisam de !important para serem sobrepostos
   ---------------------------------------------------------- */
section#depoimentos article {
    border-radius: 18px !important;
    border: 1px solid rgba(14,165,233,0.10) !important;
    box-shadow: var(--shadow-card-rest) !important;
    background: #ffffff !important;
    padding: 28px 26px !important;
    transition:
        transform 0.35s var(--easing-spring),
        box-shadow 0.35s var(--easing-smooth) !important;
}
section#depoimentos article:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-card-hover) !important;
}

/* ----------------------------------------------------------
   17. ABOUT SECTION
       DOM real: section.about-section > div.about-content
               > div.about-text > div.about-signature
               > div.about-highlights > div.highlight-item
                 > div.highlight-number + div.highlight-text
   ---------------------------------------------------------- */
.about-section {
    padding: 96px 20px;
    border-radius: 28px;
}
.about-text p {
    font-size: 1.02rem;
    line-height: 1.85;
}
.about-signature {
    border-radius: 18px;
    padding: 28px 26px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
    box-shadow: 0 6px 22px rgba(15,23,42,0.20);
}
.about-signature strong {
    font-size: 1.18rem;
    letter-spacing: 0.01em;
}
.about-signature span {
    font-size: 0.92rem;
    opacity: 0.88;
}
.highlight-item {
    border-radius: 20px;
    border: 1px solid rgba(14,165,233,0.09);
    box-shadow: var(--shadow-card-rest);
    padding: 26px 20px;
    transition:
        transform 0.38s var(--easing-spring),
        box-shadow 0.38s var(--easing-smooth);
}
.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}
.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}
.highlight-text {
    font-size: 0.83rem;
    letter-spacing: 0.02em;
    font-weight: 600;
    margin-top: 5px;
}

/* ----------------------------------------------------------
   18. CONTACT SECTION
   ---------------------------------------------------------- */
.contact-form-section {
    padding: 90px 20px;
    border-radius: 28px;
}

/* ----------------------------------------------------------
   19. NEIGHBORHOODS
       DOM real: section.neighborhoods-section > div.neighborhoods-grid
               > a.neighborhood-card (SEM inline styles aqui)
       section.property-types-section / section.cities-section
               > a.neighborhood-card (COM inline styles → !important no hover)
   ---------------------------------------------------------- */
.neighborhoods-section,
.property-types-section,
.cities-section {
    padding: 80px 0;
    border-radius: 24px;
}
.neighborhoods-section h2,
.property-types-section h2,
.cities-section h2 {
    letter-spacing: -0.04em;
    font-weight: 800;
}
.neighborhoods-grid {
    gap: 22px;
    margin-top: 10px;
}
.neighborhood-card {
    border-radius: 18px !important;
    box-shadow: var(--shadow-card-rest) !important;
    transition:
        transform 0.38s var(--easing-spring),
        box-shadow 0.38s var(--easing-smooth) !important;
    overflow: hidden;
}
.neighborhood-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.neighborhood-cta {
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.neighborhood-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--shadow-card-hover) !important;
}

/* ----------------------------------------------------------
   20. FAQ — override inline styles
       DOM real: section#faq > div.container > div > div[style="background:#fff;..."]
       Não existem .faq-item nem .faq-question no DOM!
   ---------------------------------------------------------- */
section#faq .container > div > div {
    border-radius: 14px !important;
    border: 1px solid rgba(14,165,233,0.10) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
    transition:
        transform 0.28s var(--easing-smooth),
        box-shadow 0.28s ease !important;
    padding: 1.4rem 1.6rem !important;
}
section#faq .container > div > div:hover {
    transform: translateX(4px) !important;
    box-shadow:
        0 2px 10px rgba(14,165,233,0.10),
        0 6px 20px rgba(14,165,233,0.08) !important;
}
section#faq .container > div > div h3 {
    font-size: 1.00rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* ----------------------------------------------------------
   21. BLOG CARDS — override inline styles
       DOM real: section[aria-labelledby="blog-heading"] > div.container
                 > div > a[style="background:#fff;border-radius:10px;..."]
   ---------------------------------------------------------- */
section[aria-labelledby="blog-heading"] a {
    border-radius: 16px !important;
    border: 1px solid rgba(14,165,233,0.08) !important;
    box-shadow: var(--shadow-card-rest) !important;
    transition:
        transform 0.35s var(--easing-spring),
        box-shadow 0.35s var(--easing-smooth) !important;
    overflow: hidden;
    display: block;
}
section[aria-labelledby="blog-heading"] a:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-card-hover) !important;
}

/* ----------------------------------------------------------
   22. FOOTER
       DOM real: footer.footer > div.footer-content
               > div.footer-brand + div.footer-section (múltiplos)
               > div.footer-social-links > a.social-icon
               + div.footer-bottom
   ---------------------------------------------------------- */
.footer {
    padding: 64px 20px 36px;
}
.footer-section h3 {
    font-size: 0.70rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(241,245,249,0.72);
    margin-bottom: 18px;
}
.footer-section a {
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    transition:
        color 0.22s ease,
        transform 0.22s var(--easing-spring);
}
.footer-section a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* ----------------------------------------------------------
   23. SOCIAL ICONS — DOM real: a.social-icon
   ---------------------------------------------------------- */
.social-icon {
    border-radius: 12px;
    transition:
        transform 0.28s var(--easing-spring),
        box-shadow 0.25s ease;
}
.social-icon:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 6px 18px rgba(14,165,233,0.26);
}

/* ----------------------------------------------------------
   24. WHATSAPP FLOAT — DOM real: a.whatsapp-float (defined in styles.css)
   ---------------------------------------------------------- */
.whatsapp-float {
    box-shadow:
        0 4px 14px rgba(37,211,102,0.36),
        0 10px 32px rgba(37,211,102,0.18);
    transition:
        transform 0.28s var(--easing-spring),
        box-shadow 0.28s var(--easing-smooth);
}
.whatsapp-float:hover {
    transform: scale(1.10) translateY(-3px);
    box-shadow:
        0 8px 22px rgba(37,211,102,0.44),
        0 16px 44px rgba(37,211,102,0.22);
}

/* ----------------------------------------------------------
   25. PAGINATION
   ---------------------------------------------------------- */
.pagination a {
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition:
        transform 0.25s var(--easing-spring),
        box-shadow 0.25s var(--easing-smooth),
        background 0.22s ease;
}
.pagination a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(14,165,233,0.18);
}

/* ----------------------------------------------------------
   26. SECTION SPACING — breathing room
   ---------------------------------------------------------- */
.featured-properties,
.why-choose,
.how-it-works,
.about-section,
.contact-form-section {
    margin-bottom: 28px;
}

/* ----------------------------------------------------------
   27. PHONE LINK — refined
   ---------------------------------------------------------- */
.phone-link {
    border-radius: 24px;
    letter-spacing: 0.01em;
    font-size: 1.02rem;
    transition:
        background 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s var(--easing-spring);
}
.phone-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(14,165,233,0.14);
}

/* ----------------------------------------------------------
   28. MOBILE — BLUR DESATIVADO (performance-safe)
   ---------------------------------------------------------- */
@media (max-width: 768px) {
    .navbar,
    .search-section {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .navbar {
        background: rgba(255,255,255,0.98) !important;
    }
    .search-section {
        background: rgba(255,255,255,0.99) !important;
    }
}

/* ----------------------------------------------------------
   29. TOUCH / HOVER:NONE — sem sticky-hover mobile
   ---------------------------------------------------------- */
@media (hover: none) {
    .property-card:hover,
    .benefit-card:hover,
    .neighborhood-card:hover,
    .highlight-item:hover {
        transform: none !important;
        box-shadow: var(--shadow-card-rest) !important;
        border-color: rgba(14,165,233,0.10) !important;
    }
    .property-card:hover .property-image img {
        transform: none;
    }
    .property-card:hover .property-image::after {
        opacity: 0;
    }
    .step:hover .step-number {
        transform: none;
        box-shadow: 0 6px 20px rgba(14,165,233,0.22);
    }
    section#depoimentos article:hover {
        transform: none !important;
        box-shadow: var(--shadow-card-rest) !important;
    }
    section[aria-labelledby="blog-heading"] a:hover {
        transform: none !important;
        box-shadow: var(--shadow-card-rest) !important;
    }
    section#faq .container > div > div:hover {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
    }
    .social-icon:hover  { transform: none; }
    .whatsapp-float:hover { transform: scale(1.05); }
    .btn-primary:hover  { transform: none !important; }
    .logo:hover         { transform: none; opacity: 1; }
}

/* ----------------------------------------------------------
   30. MOBILE PREMIUM — spacing e tipografia
   ---------------------------------------------------------- */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 100px;
    }
    .hero-content h1 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }
    .search-section {
        padding: 26px 18px !important;
        border-radius: 18px !important;
        margin: -30px 14px 56px !important;
    }
    .featured-properties,
    .why-choose,
    .how-it-works,
    .about-section,
    .contact-form-section {
        padding: 60px 20px;
        border-radius: 20px;
    }
    .properties-grid {
        gap: 18px;
    }
    .property-card { border-radius: 16px; }
    .benefit-card  { border-radius: 16px; }
    .property-price {
        font-size: 1.30rem;
    }
    .neighborhoods-section,
    .property-types-section,
    .cities-section {
        padding: 56px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 16px 80px;
    }
    .hero-content h1 {
        font-size: clamp(1.65rem, 8vw, 2.1rem);
    }
    .search-section {
        margin: -22px 10px 44px !important;
    }
}

/* ============================================================
   LUXURY ART DIRECTION — v20260508f
   Dark bands, gold accents, cinematic depth, editorial rhythm.
   GPU-friendly. Zero JS. Zero CLS.
   ============================================================ */

/* --- LUXURY TOKENS --- */
:root {
    --gold-accent:        #c4a35a;
    --gold-glow:          rgba(196,163,90,0.16);
    --dark-deep:          #030810;
    --dark-surface:       #080f1e;
    --dark-mid:           #0b1829;
    --shadow-luxury:
        0 1px 3px  rgba(0,0,0,0.04),
        0 6px 16px rgba(0,0,0,0.07),
        0 20px 40px rgba(14,165,233,0.07);
    --shadow-luxury-hover:
        0 2px 6px  rgba(0,0,0,0.06),
        0 12px 28px rgba(0,0,0,0.10),
        0 36px 60px rgba(14,165,233,0.12);
}

/* --- HERO — decorative gold accent under H1 --- */
.hero-content h1::after {
    content: '';
    display: block;
    width: 52px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-accent), rgba(196,163,90,0));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* --- SEARCH SECTION — top accent line --- */
.search-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}
.search-section {
    position: relative;
}

/* --- PROPERTY CARDS — luxury shadows --- */
.property-card {
    box-shadow: var(--shadow-luxury);
}
.property-card:hover {
    box-shadow: var(--shadow-luxury-hover);
}

/* --- PROPERTY PRICE — gold gradient on hover --- */
.property-card:hover .property-price span {
    background: linear-gradient(110deg, var(--gold-accent) 0%, #e8c46a 55%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- WHY CHOOSE — DARK LUXURY BAND --- */
.why-choose {
    background: linear-gradient(162deg, var(--dark-deep) 0%, var(--dark-mid) 55%, #0f172a 100%);
    border-radius: 0;
    margin-bottom: 0;
    position: relative;
}
.why-choose::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold-accent) 35%,
        rgba(14,165,233,0.45) 65%,
        transparent 100%);
    opacity: 0.55;
}
.why-choose::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(14,165,233,0.25) 50%,
        transparent 100%);
}
.why-choose h2            { color: #e8edf5; }
.why-choose .section-subtitle { color: rgba(226,232,240,0.64); }
.why-choose .benefit-card {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.085);
    box-shadow:
        0 4px 20px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.06);
}
.why-choose .benefit-card:hover {
    background: rgba(255,255,255,0.085);
    border-color: rgba(14,165,233,0.32);
    transform: translateY(-5px);
    box-shadow:
        0 8px 32px rgba(0,0,0,0.38),
        0 0 0 1px rgba(14,165,233,0.14),
        inset 0 1px 0 rgba(255,255,255,0.07);
}
.why-choose .benefit-card h3 { color: #f1f5f9; }
.why-choose .benefit-card p  { color: rgba(226,232,240,0.64); }

/* --- ABOUT SECTION — warm light background --- */
.about-section {
    background: linear-gradient(148deg, #f8faff 0%, #f2f7ff 50%, #ecf3fd 100%);
}

/* --- HIGHLIGHT NUMBERS — gradient color (premium stat cards) --- */
.highlight-number {
    background: linear-gradient(120deg, var(--secondary-color) 0%, #0369a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback for engines that don't support bg-clip */
}

/* --- HOW IT WORKS — clean white --- */
.how-it-works {
    background: #ffffff;
}

/* --- CONTACT SECTION — DARK LUXURY BAND --- */
.contact-form-section {
    background: linear-gradient(162deg, var(--dark-deep) 0%, var(--dark-mid) 55%, #0e1b2e 100%);
    border-radius: 0;
    margin-bottom: 0;
    position: relative;
}
.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold-accent) 35%,
        rgba(14,165,233,0.45) 65%,
        transparent 100%);
    opacity: 0.55;
}
.contact-form-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(14,165,233,0.25) 50%,
        transparent 100%);
}
.contact-form-section h2 { color: #e8edf5; }
.contact-form-section .section-subtitle { color: rgba(226,232,240,0.64); }
.contact-form-section .form-group label {
    color: rgba(203,213,225,0.80);
}
.contact-form-section .form-group input,
.contact-form-section .form-group textarea {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.14);
    color: #e2e8f0;
}
.contact-form-section .form-group input::placeholder,
.contact-form-section .form-group textarea::placeholder {
    color: rgba(203,213,225,0.38);
    opacity: 1; /* Firefox */
}
.contact-form-section .form-group input:focus,
.contact-form-section .form-group textarea:focus {
    background: rgba(255,255,255,0.11);
    border-color: rgba(14,165,233,0.55);
    box-shadow: 0 0 0 4px rgba(14,165,233,0.09);
    color: #f1f5f9;
}

/* --- NEIGHBORHOODS — subtle section divider above --- */
.neighborhoods-section {
    border-top: 1px solid rgba(14,165,233,0.10);
}

/* --- MOBILE — dark bands full-width, paddings preserved --- */
@media (max-width: 768px) {
    .why-choose,
    .contact-form-section {
        border-radius: 0 !important;
        padding: 60px 0 !important;
    }
}

@media (max-width: 480px) {
    .why-choose,
    .contact-form-section {
        padding: 52px 0 !important;
    }
}

/* --- HOVER:NONE — disable dark-card hover transforms on touch --- */
@media (hover: none) {
    .why-choose .benefit-card:hover {
        transform: none !important;
        background: rgba(255,255,255,0.055) !important;
        border-color: rgba(255,255,255,0.085) !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.06) !important;
    }
}
