
    /* ─── DESIGN SYSTEM v2.0 (25/04/2026) ────────────────────── */
    /* Importa tokens unificados (cores, tipografia, motion, z-index) */
    @import url('/assets/design-system.css');
    /* Google Fonts movido pro <head> dos HTMLs (evita cadeia de bloqueio em serie via @import) */

    /* ─── A11y utilitarios globais ─── */
    /* Honeypot anti-bot: campo escondido visualmente, ignorado por usuarios reais e leitores de tela. Bots automaticos preenchem todos os inputs e o backend rejeita silenciosamente. */
    .dalia-honeypot {
      position: absolute !important;
      left: -9999px !important;
      top: -9999px !important;
      width: 1px !important;
      height: 1px !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }
    .sr-only {
      position: absolute !important;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .skip-link {
      position: absolute;
      left: -9999px; top: 0;
      z-index: 10000;
      padding: 0.75rem 1rem;
      background: #0A0A0A;
      color: #C9A84C;
      font-weight: 600;
      text-decoration: none;
      border: 2px solid #C9A84C;
      border-radius: 0 0 6px 0;
    }
    .skip-link:focus {
      left: 0;
      outline: 2px solid #C9A84C;
      outline-offset: 2px;
    }

    /* ─── FONTS LOCAIS - Inter (DS v2 weights 400/500/600/700) ─────────
       Cormorant Garamond e' carregado via Google Fonts CDN (import no topo).
       Inter mantido local pra performance (sem flash of unstyled text). */
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url('/assets/fonts/inter-400.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 500;
      font-display: swap;
      src: url('/assets/fonts/inter-500.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 600;
      font-display: swap;
      src: url('/assets/fonts/inter-600.woff2') format('woff2');
    }

    /* ─── RESET & BASE ─────────────────────────────────────── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      /* World class palette (07/05/2026) */
      --dalia-green-deep:   #163A2A;
      --dalia-green-medium: #1F4D38;
      --dalia-gold:         #B8973A;
      --dalia-gold-light:   #D4B860;
      --dalia-cream:        #F5EFE6;
      --dalia-charcoal:     #161616;
      --dalia-white:        #FFFFFF;
      --dalia-aged-gold:    #B8973A;
      --dalia-off-white:    #F5EFE6;

      /* Tipografia world class */
      --font-display: 'Cormorant Infant', 'Editorial New', 'GT Sectra', 'Tiempos Headline', Georgia, serif;
      --font-prose:   'Spectral', 'Tiempos Text', Georgia, serif;
      --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
      --tracking-display:        -0.02em;
      --tracking-sans-uppercase:  0.1em;

      /* Paleta v2.1 (aliases world class pros nomes legados) */
      --bg:        var(--dalia-cream);
      --ink:       var(--dalia-charcoal);
      --ink-soft:  #6B6B6B;
      --accent:    var(--dalia-gold);
      --accent-lt: var(--dalia-gold-light);
      /* Paleta legada (retrocompat com componentes antigos) */
      --white:  var(--dalia-cream);
      --black:  var(--dalia-charcoal);
      --gold:   var(--dalia-gold);
      --gold-lt: var(--dalia-gold-light);
      --gray:   #6B6B6B;
      --gray-lt: #D4D4D0;
      --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 1.5;
      color: var(--black);
      background: var(--white);
      overflow-x: hidden;
    }

    img { display: block; width: 100%; }
    a   { text-decoration: none; color: inherit; }

    /* ─── TYPOGRAPHY ───────────────────────────────────────── */
    .serif { font-family: 'Cormorant Garamond', Georgia, serif; }

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 400;
      line-height: 1.15;
    }

    /* ─── ANIMATIONS ───────────────────────────────────────── */
    [data-animate] {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
    }

    [data-animate].visible {
      opacity: 1;
      transform: translateY(0);
    }

    [data-delay="1"] { transition-delay: 0.1s; }
    [data-delay="2"] { transition-delay: 0.2s; }
    [data-delay="3"] { transition-delay: 0.3s; }
    [data-delay="4"] { transition-delay: 0.45s; }
    [data-delay="5"] { transition-delay: 0.6s; }

    /* ─── BUTTONS ──────────────────────────────────────────── */
    .btn {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 0.78rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 0.95rem 2.4rem;
      cursor: pointer;
      border: 1px solid transparent;
      transition: all 0.35s var(--ease);
    }

    .btn-gold {
      background: var(--gold);
      color: var(--white);
      border-color: var(--gold);
    }

    .btn-gold:hover {
      background: var(--gold-lt);
      border-color: var(--gold-lt);
    }

    .btn-outline-white {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.55);
    }

    .btn-outline-white:hover {
      background: rgba(255,255,255,0.1);
      border-color: var(--white);
    }

    .btn-outline-dark {
      background: transparent;
      color: var(--black);
      border-color: var(--black);
    }

    .btn-outline-dark:hover {
      background: var(--black);
      color: var(--white);
    }

    /* ─── SECTION COMMON ───────────────────────────────────── */
    .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      line-height: 1.2;
    }

    .section-title strong {
      font-weight: 600;
    }

    .divider-gold {
      width: 48px;
      height: 1px;
      background: var(--gold);
      margin: 1.8rem 0;
    }

    /* ─── HEADER ───────────────────────────────────────────── */
    #header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      padding: 1.6rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s;
      border-bottom: 1px solid transparent;
    }

    #header.scrolled {
      background: rgba(250, 250, 248, 0.94);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom-color: var(--gold);
    }

    .header-logo {
      display: inline-flex;
      align-items: center;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 2rem;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--white);
      transition: color 0.4s;
    }

    #header.scrolled .header-logo { color: var(--black); }

    /* Logo SVG - dimensoes consistentes em todo header (Design System v2.0) */
    .header-logo img {
      height: 44px;
      width: auto;
      display: block;
      transition: filter var(--ds-duration-base, 300ms) var(--ds-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
    }
    /* Em hero escuro, logo dourado original ja contrasta bem */
    /* Em scrolled (fundo claro), logo permanece dourado - bate com brand */

    nav { display: flex; align-items: center; gap: 2.5rem; }

    nav a {
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      transition: color 0.3s;
    }

    nav a:hover { color: var(--gold); }

    #header.scrolled nav a { color: var(--gray); }
    #header.scrolled nav a:hover { color: var(--gold); }

    .nav-cta {
      border: 1px solid rgba(255,255,255,0.5);
      padding: 0.5rem 1.2rem;
      color: var(--white) !important;
      transition: all 0.3s var(--ease) !important;
    }

    #header.scrolled .nav-cta {
      border-color: var(--gold);
      color: var(--gold) !important;
    }

    .nav-cta:hover {
      background: var(--gold) !important;
      border-color: var(--gold) !important;
      color: var(--white) !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 1px;
      background: var(--white);
      transition: background 0.3s;
    }

    #header.scrolled .hamburger span { background: var(--black); }

    /* Mobile nav: regras antigas removidas em 15/05/2026 porque conflitavam
       com o style inline do partial header (left: 0 + right: -100% + width: 100%
       vs width: min(82%,360px) deixavam o menu aberto à esquerda por default no
       iPhone). O partial header agora é fonte unica das regras .mobile-nav. */

    /* ─── HERO ─────────────────────────────────────────────── */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 640px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1200&q=75&auto=format&fm=webp');
      background-size: cover;
      background-position: center;
      transform: scale(1.05);
      transition: transform 8s var(--ease);
    }

    #hero.loaded .hero-bg { transform: scale(1); }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 820px;
      padding: 0 2rem;
    }

    .hero-label {
      font-size: 0.68rem;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 400;
      margin-bottom: 1.8rem;
    }

    .hero-title {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 400;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 1.5rem;
    }

    .hero-sub {
      font-size: clamp(0.9rem, 1.5vw, 1.05rem);
      font-weight: 400;
      color: rgba(255,255,255,0.75);
      line-height: 1.8;
      max-width: 560px;
      margin: 0 auto 2.8rem;
      letter-spacing: 0.3px;
    }

    .hero-buttons {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      z-index: 2;
    }

    .scroll-indicator span {
      font-size: 0.6rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    .scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
      position: relative;
      overflow: hidden;
    }

    .scroll-line::after {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gold);
      animation: scrollDown 1.8s ease-in-out infinite;
    }

    @keyframes scrollDown {
      0%   { top: -100%; }
      100% { top: 100%; }
    }

    /* ─── NUMBERS ──────────────────────────────────────────── */
    #numbers {
      background: var(--black);
      padding: 6rem 4rem;
    }

    .numbers-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .number-item {
      text-align: center;
      padding: 2rem;
      border-right: 1px solid rgba(255,255,255,0.07);
    }

    .number-item:last-child { border-right: none; }

    .number-value {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(2.2rem, 3.5vw, 3.2rem);
      font-weight: 400;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.6rem;
    }

    .number-value em {
      color: var(--gold);
      font-style: normal;
    }

    .number-label {
      font-size: 0.75rem;
      font-weight: 400;
      color: rgba(255,255,255,0.5);
      line-height: 1.6;
      letter-spacing: 0.5px;
    }

    .number-source {
      font-size: 0.6rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 1rem;
      opacity: 0.7;
    }

    /* ─── ABOUT ────────────────────────────────────────────── */
    #about {
      padding: 8rem 4rem;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7rem;
      align-items: center;
    }

    .about-text .section-title { margin-bottom: 2rem; }

    .about-text p {
      font-size: 0.95rem;
      color: var(--gray);
      line-height: 1.9;
      margin-bottom: 1.4rem;
    }

    .about-text p strong {
      color: var(--black);
      font-weight: 400;
    }

    .about-img {
      position: relative;
    }

    .about-img img {
      height: 580px;
      object-fit: cover;
      filter: brightness(0.95) contrast(1.02);
    }

    .about-img::before {
      content: '';
      position: absolute;
      top: -1.5rem;
      right: -1.5rem;
      width: 60%;
      height: 60%;
      border: 1px solid var(--gold);
      z-index: -1;
      opacity: 0.35;
    }

    /* ─── SERVICES ─────────────────────────────────────────── */
    #services {
      background: var(--white);
      padding: 8rem 4rem;
    }

    .services-header {
      max-width: 1100px;
      margin: 0 auto 4rem;
    }

    .services-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .service-card {
      padding: 3rem 2.5rem;
      background: var(--white);
      border-top: 1px solid var(--gold);
      position: relative;
      transition: background 0.35s;
    }

    .service-card:hover { background: #F5F4F0; }

    .service-number {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 3.5rem;
      font-weight: 400;
      color: rgba(184,151,58,0.15);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .service-title {
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 1.5rem;
    }

    .service-text {
      font-size: 0.9rem;
      color: var(--gray);
      line-height: 1.85;
    }

    .service-text li {
      list-style: none;
      padding-left: 1rem;
      position: relative;
      margin-bottom: 0.5rem;
    }

    .service-text li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 0.75rem;
    }

    .services-note {
      max-width: 1100px;
      margin: 3rem auto 0;
      text-align: center;
      font-size: 0.78rem;
      color: var(--gray);
      letter-spacing: 0.5px;
      font-style: italic;
    }

    /* ─── MARKET ───────────────────────────────────────────── */
    #market {
      background: var(--black);
      padding: 8rem 4rem;
    }

    .market-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .market-inner .section-label { color: var(--gold); }
    .market-inner .section-title { color: var(--white); }
    .market-inner .divider-gold { margin-bottom: 4rem; }

    .market-timeline {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      margin-bottom: 5rem;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .timeline-item {
      padding: 2rem 1.5rem;
      border-right: 1px solid rgba(255,255,255,0.06);
    }

    .timeline-item:last-child { border-right: none; }

    .timeline-year {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.8rem;
      font-weight: 400;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .timeline-stats {
      list-style: none;
    }

    .timeline-stats li {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.8;
      padding-bottom: 0.4rem;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      margin-bottom: 0.4rem;
    }

    .timeline-stats li strong {
      color: var(--white);
      font-weight: 400;
    }

    /* Comparativo */
    .market-compare {
      margin-bottom: 5rem;
    }

    .compare-title {
      font-size: 0.7rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 2rem;
    }

    .compare-bars {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .compare-row {
      display: grid;
      grid-template-columns: 180px 1fr auto;
      align-items: center;
      gap: 1.5rem;
    }

    .compare-label {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.55);
    }

    .compare-bar-wrap {
      height: 3px;
      background: rgba(255,255,255,0.07);
    }

    .compare-bar {
      height: 100%;
      background: var(--gold);
      transition: width 1.2s var(--ease);
    }

    .compare-bar.muted { background: rgba(255,255,255,0.2); }

    .compare-value {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.1rem;
      color: var(--white);
    }

    /* City cards */
    .city-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.05);
    }

    .city-card {
      background: var(--black);
      padding: 2rem;
      transition: background 0.3s;
    }

    .city-card:hover { background: #111; }

    .city-name {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 1rem;
    }

    .city-stats {
      list-style: none;
    }

    .city-stats li {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.7;
    }

    .city-stats li strong {
      color: var(--gold);
      font-weight: 400;
    }

    /* ─── CALCULATOR ───────────────────────────────────────── */
    #calculator {
      padding: 8rem 4rem;
      background: var(--white);
    }

    .calc-inner {
      max-width: 900px;
      margin: 0 auto;
    }

    .calc-inner .section-title { margin-bottom: 0.6rem; }

    .calc-sub {
      font-size: 0.9rem;
      color: var(--gray);
      margin-bottom: 3rem;
    }

    .calc-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .calc-field {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .calc-field label {
      font-size: 0.68rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gray);
    }

    .calc-field select,
    .calc-field input {
      padding: 0.9rem 1rem;
      border: none;
      border-bottom: 1px solid var(--gray-lt);
      background: transparent;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--black);
      outline: none;
      transition: border-color 0.3s;
      -webkit-appearance: none;
      appearance: none;
      border-radius: 0;
    }

    .calc-field select:focus,
    .calc-field input:focus {
      border-bottom-color: var(--gold);
    }

    .calc-field select {
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23B8973A' stroke-width='1'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.5rem center;
      padding-right: 2rem;
      cursor: pointer;
    }

    .calc-btn-wrap {
      grid-column: 1 / -1;
      text-align: center;
    }

    /* Results */
    #calc-result {
      display: none;
      margin-top: 3rem;
      padding-top: 3rem;
      border-top: 1px solid var(--gray-lt);
    }

    #calc-result.visible { display: block; }

    .result-headline {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1rem;
      font-weight: 400;
      color: var(--gray);
      margin-bottom: 2.5rem;
      text-align: center;
    }

    .result-main {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--gray-lt);
      margin-bottom: 3rem;
    }

    .result-box {
      background: var(--white);
      padding: 2.5rem 2rem;
      text-align: center;
    }

    .result-box-label {
      font-size: 0.65rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 1rem;
    }

    .result-box-value {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 2.2rem;
      font-weight: 400;
      color: var(--black);
      line-height: 1;
    }

    .result-box-value.gold { color: var(--gold); }

    .result-box-sub {
      font-size: 0.75rem;
      color: var(--gray);
      margin-top: 0.6rem;
    }

    /* Bar chart */
    .chart-title {
      font-size: 0.68rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .bar-chart {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 6px;
      align-items: flex-end;
      height: 140px;
      margin-bottom: 0.5rem;
    }

    .bar-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      height: 100%;
    }

    .bar-value {
      font-size: 0.55rem;
      font-weight: 400;
      color: var(--gray);
      margin-bottom: 4px;
      white-space: nowrap;
      letter-spacing: 0;
    }

    .bar {
      width: 100%;
      background: var(--gold);
      opacity: 0.25;
      transition: height 0.8s var(--ease), opacity 0.3s;
      min-height: 4px;
    }

    .bar.peak { opacity: 1; }
    .bar.high { opacity: 0.7; }
    .bar.mid  { opacity: 0.45; }

    .bar-month {
      font-size: 0.58rem;
      letter-spacing: 0.5px;
      color: var(--gray);
      margin-top: 0.5rem;
      text-transform: uppercase;
    }

    .result-note {
      margin-top: 2.5rem;
      padding: 1.5rem 2rem;
      background: #F5F4F0;
      border-left: 2px solid var(--gold);
      font-size: 0.85rem;
      color: var(--gray);
      line-height: 1.7;
    }

    .result-note strong {
      color: var(--black);
      font-weight: 400;
    }

    .result-cta {
      text-align: center;
      margin-top: 2.5rem;
    }

    /* ─── FOR WHOM ──────────────────────────────────────────── */
    #forwhom {
      background: #F5F4F0;
      padding: 8rem 4rem;
    }

    .forwhom-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .forwhom-inner .section-title { margin-bottom: 4rem; }

    .profiles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
    }

    .profile-card {
      background: var(--white);
      padding: 3.5rem 2.5rem;
      transition: background 0.35s;
    }

    .profile-card:hover { background: var(--black); }
    .profile-card:hover .profile-icon { border-color: var(--gold); }
    .profile-card:hover .profile-title,
    .profile-card:hover .profile-text { color: rgba(255,255,255,0.8); }
    .profile-card:hover .profile-icon svg path,
    .profile-card:hover .profile-icon svg rect,
    .profile-card:hover .profile-icon svg circle { stroke: var(--gold); }

    .profile-icon {
      width: 48px;
      height: 48px;
      border: 1px solid rgba(184,151,58,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
      transition: border-color 0.35s;
    }

    .profile-icon svg {
      width: 20px;
      height: 20px;
    }

    .profile-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--black);
      margin-bottom: 1rem;
      line-height: 1.3;
      transition: color 0.35s;
    }

    .profile-text {
      font-size: 0.85rem;
      color: var(--gray);
      line-height: 1.85;
      transition: color 0.35s;
    }

    /* ─── TESTIMONIALS ─────────────────────────────────────── */
    #testimonials {
      background: #0F0F0D;
      padding: 8rem 4rem;
    }

    .testimonials-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .testimonials-inner .section-label { color: var(--gold); }
    .testimonials-inner .section-title { color: var(--white); margin-bottom: 4rem; }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.06);
    }

    .testimonial-card {
      background: #0F0F0D;
      padding: 3rem 2.5rem;
      transition: background 0.35s;
    }

    .testimonial-card:hover { background: #141410; }

    .quote-mark {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 5rem;
      font-weight: 400;
      color: var(--gold);
      line-height: 0.8;
      margin-bottom: 1.5rem;
      opacity: 0.5;
    }

    .testimonial-text {
      font-size: 0.92rem;
      font-style: italic;
      color: rgba(255,255,255,0.7);
      line-height: 1.85;
      margin-bottom: 2rem;
    }

    .testimonial-author strong {
      display: block;
      font-size: 0.78rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--white);
      font-weight: 400;
      margin-bottom: 0.2rem;
    }

    .testimonial-author span {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.35);
    }

    /* ─── CTA FINAL ─────────────────────────────────────────── */
    #cta-final {
      position: relative;
      padding: 10rem 4rem;
      text-align: center;
      background: var(--black);
      overflow: hidden;
    }

    #cta-final::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(184,151,58,0.07) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-label {
      font-size: 0.65rem;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }

    .cta-title {
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 400;
      color: var(--white);
      max-width: 700px;
      margin: 0 auto 1.5rem;
      line-height: 1.2;
    }

    .cta-sub {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.5);
      margin-bottom: 3rem;
      letter-spacing: 0.3px;
    }

    /* ─── FOOTER ────────────────────────────────────────────── */
    footer {
      background: var(--black);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 3rem 4rem;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 2rem;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--white);
    }

    .footer-logo img {
      height: 50px;
      width: auto;
      display: block;
    }

    .footer-tagline {
      font-size: 0.6rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-top: 0.3rem;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
      justify-content: center;
    }

    .footer-links a {
      font-size: 0.68rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      transition: color 0.3s;
    }

    .footer-links a:hover { color: var(--gold); }

    .footer-right {
      text-align: right;
    }

    .footer-contact {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.9;
    }

    .footer-contact a { transition: color 0.3s; }
    .footer-contact a:hover { color: var(--gold); }

    .footer-copy {
      font-size: 0.65rem;
      color: rgba(255,255,255,0.2);
      margin-top: 0.5rem;
    }

    /* ─── WHATSAPP FLOAT ────────────────────────────────────── */
    .whatsapp-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 999;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      text-decoration: none;
    }

    .whatsapp-label {
      background: var(--white);
      color: var(--black);
      font-size: 0.75rem;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      letter-spacing: 0.5px;
      padding: 0.5rem 1rem;
      border-radius: 2px;
      box-shadow: 0 2px 20px rgba(0,0,0,0.12);
      white-space: nowrap;
      opacity: 0;
      transform: translateX(8px);
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
    }

    .whatsapp-float:hover .whatsapp-label {
      opacity: 1;
      transform: translateX(0);
    }

    .whatsapp-btn {
      width: 52px;
      height: 52px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      transition: transform 0.3s, box-shadow 0.3s;
      flex-shrink: 0;
    }

    .whatsapp-float:hover .whatsapp-btn {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37,211,102,0.55);
    }

    .whatsapp-btn svg { width: 26px; height: 26px; fill: #fff; }

    /* ─── RESPONSIVE ────────────────────────────────────────── */
    @media (max-width: 1024px) {
      #header { padding: 1.4rem 2.5rem; }
      #about { padding: 6rem 2.5rem; gap: 4rem; }
      #services { padding: 6rem 2.5rem; }
      #market { padding: 6rem 2.5rem; }
      #calculator { padding: 6rem 2.5rem; }
      #forwhom { padding: 6rem 2.5rem; }
      #testimonials { padding: 6rem 2.5rem; }
      #cta-final { padding: 7rem 2.5rem; }
      #numbers { padding: 5rem 2.5rem; }
      footer { padding: 2.5rem; }

      .numbers-grid { grid-template-columns: repeat(2, 1fr); }
      .number-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
      .number-item:nth-child(2) { border-right: none; }
      .number-item:nth-child(3),
      .number-item:nth-child(4) { border-bottom: none; }

      .market-timeline { grid-template-columns: repeat(3, 1fr); }
      .city-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 900px) {
      nav { display: none; }
      .hamburger { display: flex; }

      #about { grid-template-columns: 1fr; gap: 3rem; }
      .about-img { order: -1; }
      .about-img img { height: 380px; }
      .about-img::before { display: none; }

      .services-grid { grid-template-columns: 1fr; }
      .profiles-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }

      .result-main { grid-template-columns: 1fr; }
      .calc-form { grid-template-columns: 1fr; }

      .market-timeline { grid-template-columns: repeat(2, 1fr); }
      .city-grid { grid-template-columns: 1fr; }

      footer { grid-template-columns: 1fr; text-align: center; }
      .footer-right { text-align: center; }
      .footer-links { flex-wrap: wrap; }

      .compare-row { grid-template-columns: 120px 1fr auto; gap: 0.8rem; }
    }

    @media (max-width: 600px) {
      #header { padding: 1.2rem 1.5rem; }
      #numbers { padding: 4rem 1.5rem; }
      .numbers-grid { grid-template-columns: 1fr 1fr; }
      #about, #services, #market, #calculator, #forwhom, #testimonials, #cta-final {
        padding: 5rem 1.5rem;
      }
      footer { padding: 2rem 1.5rem; }
      .hero-buttons { flex-direction: column; align-items: center; }
      .bar-month { font-size: 0.5rem; }
      .market-timeline { grid-template-columns: 1fr; }
    }

/* Hero accent for Premium keyword */
.accent { color: #B8973A; font-style: italic; font-weight: 400; }


/* ─── HOTFIX 07/05/2026: contraste forçado em sections críticas ─────────
   Fix de bug visual onde números .market-trust e .roi-card apareciam
   invisíveis (preto sobre preto / cream sobre cream) em produção.
   Força cores explicitamente em vez de depender de cascata. */

/* MARKET TRUST — section #market tem fundo --black, garantir todos textos brancos */
#market .market-trust { color: #FAFAF8; }
#market .market-trust div[style*="font-family:'Cormorant"] {
  color: #FAFAF8 !important;
}
#market .market-trust p {
  color: rgba(250,250,248,0.75) !important;
}
#market .market-trust em {
  color: #C9A84C !important;
}
#market .market-trust .section-label {
  color: #C9A84C !important;
}

/* ROI / 2.4x — section #calculator tem fundo --white, números em ouro,
   labels em cinza, parágrafos em quase preto. Garantir contraste AA (4.5:1). */
#calculator .roi-card {
  background: #FFFFFF !important;
  border: 1px solid #E5DFD0 !important;
}
#calculator .roi-card > div:first-child {
  color: #B8973A !important;
}
#calculator .roi-card > div:nth-child(2) {
  color: #4A4A48 !important; /* mais escuro que #6B6B6B pra subir contraste */
}
#calculator .roi-card p {
  color: #1A1A1A !important;
}

/* Animacao nao deve esconder permanentemente em caso de bug do observer */
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ─── HIERARQUIA TIPOGRAFICA UNIFICADA (07/05/2026) ──────────────────────
   2 famílias só: Cormorant Garamond (display, italic) + Inter (UI/body).
   4 níveis de heading + eyebrow caps. Line-height 1.1 em display, 1.5 em body.
   Não sobrescreve estilos inline existentes em sections individuais —
   serve como baseline pra novos componentes seguirem padrão. */

:root {
  /* Tamanhos canônicos da hierarquia */
  --h1-size: clamp(3rem, 6vw, 4.5rem);
  --h2-size: clamp(2rem, 4vw, 3rem);
  --h3-size: clamp(1.4rem, 2.4vw, 1.75rem);
  --eyebrow-size: 0.7rem;
  --body-size: 1rem;
  --small-size: 0.85rem;
}

/* H1 hero - serif display */
.t-h1, body h1.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: var(--h1-size);
  line-height: 1.05;
  letter-spacing: -0.012em;
}

/* H2 section - serif, peso normal, opcional <strong> pra peso 600 */
.t-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: var(--h2-size);
  line-height: 1.15;
}
.t-h2 strong { font-weight: 600; }

/* H3 card - serif menor */
.t-h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: var(--h3-size);
  line-height: 1.25;
}

/* Eyebrow - sans caps com letter-spacing largo, dourado */
.t-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: var(--eyebrow-size);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Body - sans, line-height generoso */
.t-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--body-size);
  line-height: 1.65;
  color: var(--ink-soft);
}


/* ─── HOTFIX 07/05/2026 (Bloco 7): label PARA QUEM E A DALIA ─────
   Era um retângulo solto que parecia botão clicável. Agora vira eyebrow puro. */
#como-funciona .section-label,
#para-quem ~ .section-label {
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
}


/* ─── FASE 1 BRANDING: utilitários editoriais ──────────────────── */
.caps-small {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.filete-dourado {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent);
  border: 0;
  margin: 3rem auto;
}

.filete-dourado--esq { margin-left: 0; margin-right: auto; }

/* Toggle de idioma no header */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-left: 1.5rem;
}
.lang-toggle a {
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
  padding: 0.25rem 0.1rem;
}
.lang-toggle a:hover { color: var(--accent); }
.lang-toggle a.is-active {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.lang-toggle .sep {
  color: var(--gray-lt);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .lang-toggle {
    margin-left: 0;
    font-size: 0.7rem;
  }
}

/* Página manifesto (Entrega 4) */
.manifesto-page {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  min-height: 100vh;
}
.manifesto-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid rgba(10,10,10,0.06);
}
.manifesto-header .brandmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.manifesto-main {
  max-width: 640px;
  margin: 0 auto;
  padding: 12.5rem 1.5rem 8rem;
  text-align: center;
}
.manifesto-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 3rem;
}
.manifesto-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.7;
  text-align: left;
  color: var(--ink);
}
.manifesto-body p { margin-bottom: 2rem; }
.manifesto-body p:last-child { margin-bottom: 0; }

.manifesto-footer {
  padding: 3rem 2.5rem;
  border-top: 1px solid rgba(10,10,10,0.06);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 768px) {
  .manifesto-header { padding: 1.5rem 1.25rem; }
  .manifesto-main { padding: 6.25rem 1.5rem 4rem; }
  .manifesto-body { font-size: 1.375rem; line-height: 1.7; }
}

/* ─── TOUCH TARGETS WCAG 2.5.5 (Fase B.6) ───────────────────────────────
   Garante area de toque minima de 44x44px em elementos interativos densos
   (nav, footer, breadcrumb, paginacao, chips, botoes) sem alterar o visual:
   usa min-height + padding vertical e, em links inline, um ::after invisivel
   que estende a area clicavel. Nao sobrescreve o tamanho de fonte nem cor. */

/* Botoes e links que ja sao "bloco": garante altura minima clicavel */
button,
a.cta-btn,
a.nav-cta,
a.btn,
input[type="submit"],
input[type="button"] {
  min-height: 44px;
}

/* Navegacao principal e mobile: cada item com area de toque cheia */
.dalia-header nav a,
.mobile-nav .mobile-link,
.diario-header a,
nav[aria-label="breadcrumb"] a,
.city-breadcrumb a,
.blog-breadcrumb a,
.article-breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* Links de rodape (listas densas): estende a area de toque verticalmente
   sem mudar a posicao do texto */
.dalia-footer li a,
.dalia-footer .df-access a,
footer.dalia-footer-national li a,
.footer-links a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-top: 2px;
  padding-bottom: 2px;
}

/* Paginacao e chips do blog */
.blog-pagination a,
.blog-pagination span,
.blog-chip {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Links inline curtos em prosa: estende a area de toque com ::after
   invisivel, mantendo o fluxo de texto intacto */
.faq-item summary,
.contato-channel a {
  min-height: 44px;
}

/* WhatsApp float ja e grande; garante o minimo de qualquer forma */
.whatsapp-float,
.whatsapp-btn {
  min-height: 44px;
  min-width: 44px;
}
