*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #C9A84C;
    --gold-light: #F0D080;
    --gold-dark: #8A6A1F;
    --black: #0A0A0A;
    --dark: #111111;
    --dark2: #1A1A1A;
    --gray: #888;
    --white: #F5F0E8;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    cursor: default;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 4rem;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
    transition: background 0.4s;
  }
  nav.scrolled { background: rgba(10,10,10,0.97); border-bottom: 1px solid rgba(201,168,76,0.15); }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    color: var(--gold);
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.6);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }

  /* ── HERO ── */
  #hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 8rem;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 60%),
      linear-gradient(135deg, #0A0A0A 0%, #141008 50%, #0A0A0A 100%);
  }

  .hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.15;
  }
  .hero-lines::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 55%;
    width: 1px;
    height: 200%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    transform: rotate(12deg);
  }
  .hero-lines::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 65%;
    width: 1px;
    height: 200%;
    background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
    transform: rotate(12deg);
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    letter-spacing: 0.12em;
    color: rgba(245,240,232,0.5);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
  }

  .hero-desc {
    max-width: 480px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(245,240,232,0.65);
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
  }

  .hero-cta {
    display: flex;
    gap: 1.2rem;
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-secondary {
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 1.4s forwards;
  }
  .hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.4);
  }
  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  /* ── STATS STRIP ── */
  #stats {
    background: var(--gold);
    padding: 1.2rem 0;
    overflow: hidden;
  }
  .stats-ticker {
    display: flex;
    gap: 4rem;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
  }
  .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--black);
    flex-shrink: 0;
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.7;
    max-width: 100px;
    line-height: 1.2;
  }
  .stat-sep { opacity: 0.3; font-size: 1.5rem; }

  /* ── SECTION BASE ── */
  section { padding: 8rem 8rem; }

  .section-tag {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; color: var(--gold); }

  /* ── PROBLEMA ── */
  #problema {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }
  #problema::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at right center, rgba(201,168,76,0.06) 0%, transparent 70%);
  }

  .problema-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
  }

  .problema-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .problema-card {
    border-left: 2px solid var(--gold);
    padding: 1.5rem 2rem;
    background: rgba(201,168,76,0.04);
    transition: background 0.3s, border-color 0.3s;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s, transform 0.6s, background 0.3s;
  }
  .problema-card.visible { opacity: 1; transform: translateX(0); }
  .problema-card:hover { background: rgba(201,168,76,0.09); }

  .problema-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .problema-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245,240,232,0.65);
    font-weight: 300;
  }

  .problema-quote {
    position: relative;
    padding: 3rem;
    background: rgba(201,168,76,0.05);
    border: 1px solid rgba(201,168,76,0.15);
  }
  .problema-quote::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    line-height: 1;
  }
  .problema-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5;
    color: rgba(245,240,232,0.85);
  }
  .problema-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
  }

  /* ── SOLUÇÃO ── */
  #solucao {
    background: var(--black);
    position: relative;
  }

  .solucao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    margin-top: 4rem;
  }

  .solucao-card {
    background: var(--dark2);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s, transform 0.7s;
  }
  .solucao-card.visible { opacity: 1; transform: translateY(0); }
  .solucao-card:nth-child(2) { transition-delay: 0.15s; }
  .solucao-card:nth-child(3) { transition-delay: 0.3s; }

  .solucao-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .solucao-card:hover::before { transform: scaleX(1); }

  .solucao-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: rgba(201,168,76,0.15);
    line-height: 1;
    margin-bottom: 1rem;
  }
  .solucao-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
  }
  .solucao-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }
  .solucao-card p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(245,240,232,0.6);
    font-weight: 300;
  }

  /* ── IMPACTO ── */
  #impacto {
    background: var(--dark);
    overflow: hidden;
    position: relative;
  }

  .impacto-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
  }

  .impacto-items { display: flex; flex-direction: column; gap: 2.5rem; }

  .impacto-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    align-items: start;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s, transform 0.7s;
  }
  .impacto-item.visible { opacity: 1; transform: translateX(0); }
  .impacto-item:nth-child(2) { transition-delay: 0.15s; }
  .impacto-item:nth-child(3) { transition-delay: 0.3s; }

  .impacto-icon-box {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
  }
  .impacto-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.4rem;
  }
  .impacto-item p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(245,240,232,0.6);
    font-weight: 300;
  }

  .impacto-visual {
    position: relative;
    height: 500px;
  }
  .impacto-ring {
    position: absolute;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
  }
  .impacto-ring:nth-child(1) { width: 300px; height: 300px; }
  .impacto-ring:nth-child(2) { width: 400px; height: 400px; animation-duration: 30s; animation-direction: reverse; }
  .impacto-ring:nth-child(3) { width: 480px; height: 480px; animation-duration: 45s; }

  .impacto-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .impacto-center .big-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    color: var(--gold);
    line-height: 1;
  }
  .impacto-center .big-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
    margin-top: 0.3rem;
  }

  /* ── MERCADO ── */
  #mercado {
    background: var(--black);
  }

  .mercado-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.1);
    margin-top: 4rem;
    margin-bottom: 5rem;
  }

  .mercado-num-block {
    background: var(--black);
    padding: 3.5rem 3rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
  }
  .mercado-num-block.visible { opacity: 1; transform: translateY(0); }
  .mercado-num-block:nth-child(2) { transition-delay: 0.15s; }
  .mercado-num-block:nth-child(3) { transition-delay: 0.3s; }

  .mercado-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: var(--gold);
    line-height: 1;
    display: block;
  }
  .mercado-desc {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
    margin-top: 0.75rem;
    display: block;
  }
  .mercado-sub {
    font-size: 0.8rem;
    color: rgba(245,240,232,0.35);
    margin-top: 0.5rem;
    font-weight: 300;
  }

  .mercado-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(245,240,232,0.7);
    font-weight: 300;
  }
  .mercado-text strong { color: var(--gold); font-weight: 400; }

  /* ── DIFERENCIAIS ── */
  #diferenciais {
    background: var(--dark);
    position: relative;
  }

  .dif-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
  }

  .dif-list { display: flex; flex-direction: column; gap: 0; }

  .dif-item {
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 2rem 0;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1.5rem;
    align-items: start;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s, transform 0.6s;
    cursor: default;
  }
  .dif-item.visible { opacity: 1; transform: translateX(0); }
  .dif-item:nth-child(2) { transition-delay: 0.1s; }
  .dif-item:nth-child(3) { transition-delay: 0.2s; }
  .dif-item:nth-child(4) { transition-delay: 0.3s; }
  .dif-item:nth-child(5) { transition-delay: 0.4s; }

  .dif-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: rgba(201,168,76,0.3);
    line-height: 1;
    padding-top: 0.1rem;
  }
  .dif-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 0.4rem;
    transition: color 0.3s;
  }
  .dif-item:hover h3 { color: var(--gold); }
  .dif-item p {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(245,240,232,0.5);
    font-weight: 300;
  }

  .embaixador-card {
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 3rem;
    text-align: center;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.7s, transform 0.7s;
  }
  .embaixador-card.visible { opacity: 1; transform: scale(1); }

  .embaixador-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--gold);
  }
  .embaixador-role {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .embaixador-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  .embaixador-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(245,240,232,0.6);
    font-weight: 300;
  }
  .homenagem-badge {
    margin-top: 2rem;
    border-top: 1px solid rgba(201,168,76,0.15);
    padding-top: 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .homenagem-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    letter-spacing: 0;
    text-transform: none;
    color: var(--white);
    margin-top: 0.3rem;
  }

  /* ── COTAS ── */
  #cotas {
    background: var(--black);
    position: relative;
    overflow: hidden;
  }
  #cotas::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  .cotas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    margin-top: 4rem;
    background: rgba(201,168,76,0.08);
  }

  .cota-card {
    background: var(--dark);
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s, background 0.3s;
    cursor: default;
  }
  .cota-card.visible { opacity: 1; transform: translateY(0); }
  .cota-card:nth-child(2) { transition-delay: 0.1s; }
  .cota-card:nth-child(3) { transition-delay: 0.2s; }
  .cota-card:nth-child(4) { transition-delay: 0.3s; }
  .cota-card:nth-child(5) { transition-delay: 0.4s; }
  .cota-card:hover { background: var(--dark2); }
  .cota-card.featured { background: var(--gold); }
  .cota-card.featured:hover { background: var(--gold-light); }
  .cota-card.featured * { color: var(--black) !important; opacity: 1 !important; }

  .cota-badge {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
    margin-bottom: 0.75rem;
  }
  .cota-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .cota-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
  }
  .cota-vagas {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: rgba(245,240,232,0.4);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .cota-benefits {
    font-size: 0.78rem;
    line-height: 1.7;
    color: rgba(245,240,232,0.6);
    font-weight: 300;
  }

  .cotas-special {
    margin-top: 2px;
    background: rgba(201,168,76,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  .cotas-special h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.4rem;
  }
  .cotas-special p {
    font-size: 0.85rem;
    color: rgba(245,240,232,0.6);
    font-weight: 300;
    max-width: 500px;
  }

  /* ── CRONOGRAMA ── */
  #cronograma {
    background: var(--dark);
    overflow: hidden;
  }

  .cronograma-line {
    position: relative;
    margin-top: 5rem;
    padding-top: 2rem;
  }
  .cronograma-line::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  }

  .cronograma-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .cronograma-step {
    padding: 2rem 2rem 0;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }
  .cronograma-step.visible { opacity: 1; transform: translateY(0); }
  .cronograma-step:nth-child(2) { transition-delay: 0.15s; }
  .cronograma-step:nth-child(3) { transition-delay: 0.3s; }
  .cronograma-step:nth-child(4) { transition-delay: 0.45s; }

  .step-dot {
    position: absolute;
    top: -2.35rem;
    left: 2rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--dark);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
  }
  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .cronograma-step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
    color: var(--white);
  }
  .cronograma-step p {
    font-size: 0.82rem;
    line-height: 1.65;
    color: rgba(245,240,232,0.5);
    font-weight: 300;
  }

  .orcamento-block {
    margin-top: 5rem;
    border: 1px solid rgba(201,168,76,0.15);
    padding: 3.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: rgba(201,168,76,0.03);
  }

  .orc-total {
    grid-column: span 1;
    border-right: 1px solid rgba(201,168,76,0.15);
    padding-right: 2rem;
  }
  .orc-total .label { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
  .orc-total .value { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--white); line-height: 1; }

  .orc-source { text-align: center; }
  .orc-source .src-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.4); margin-bottom: 0.3rem; }
  .orc-source .src-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.06em; color: var(--white); }

  /* ── CTA FINAL ── */
  #cta {
    background: var(--black);
    text-align: center;
    padding: 10rem 8rem;
    position: relative;
    overflow: hidden;
  }
  #cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  }

  .cta-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s, transform 0.7s;
  }
  .cta-eyebrow.visible { opacity: 1; transform: translateY(0); }

  .cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s 0.1s, transform 0.7s 0.1s;
  }
  .cta-title.visible { opacity: 1; transform: translateY(0); }
  .cta-title em { font-style: italic; color: var(--gold); }

  .cta-sub {
    max-width: 550px;
    margin: 0 auto 3.5rem;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(245,240,232,0.6);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s 0.2s, transform 0.7s 0.2s;
  }
  .cta-sub.visible { opacity: 1; transform: translateY(0); }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s 0.3s, transform 0.7s 0.3s;
  }
  .cta-buttons.visible { opacity: 1; transform: translateY(0); }

  .cta-contacts {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    transition: opacity 0.7s 0.4s;
  }
  .cta-contacts.visible { opacity: 1; }
  .contact-item {
    text-align: center;
  }
  .contact-item .clabel {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
  }
  .contact-item .cval {
    font-size: 0.875rem;
    color: rgba(245,240,232,0.7);
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 2rem 8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark);
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    color: var(--gold);
  }
  .footer-copy {
    font-size: 0.7rem;
    color: rgba(245,240,232,0.3);
    letter-spacing: 0.1em;
  }
  .footer-ig {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: rgba(245,240,232,0.4);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-ig:hover { color: var(--gold); }

  .footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.45) !important;
  text-decoration: none !important;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #C9A84C !important;
  text-decoration: none !important;
}

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    50% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
  }

  /* ── PARALLAX ── */
  .parallax-text {
    overflow: hidden;
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    opacity: 0.04;
    pointer-events: none;
    white-space: nowrap;
  }
  .parallax-text span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20vw;
    letter-spacing: 0.05em;
    color: var(--gold);
    display: inline-block;
    animation: ticker 15s linear infinite;
  }

  /* ═══════════════════════════════════════
     RESPONSIVE — TABLET (≤ 900px)
  ═══════════════════════════════════════ */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 2rem; }
    .nav-links { display: none; }

    section { padding: 5rem 1.5rem; }
    #hero { padding: 0 1.5rem; min-height: 100svh; }
    #cta { padding: 6rem 1.5rem; }

    .problema-grid,
    .impacto-inner,
    .dif-grid,
    .solucao-grid { grid-template-columns: 1fr; }

    /* Impacto: encolhe os anéis para caber na tela */
    .impacto-visual { height: 320px; }
    .impacto-ring:nth-child(1) { width: 200px; height: 200px; }
    .impacto-ring:nth-child(2) { width: 270px; height: 270px; }
    .impacto-ring:nth-child(3) { width: 310px; height: 310px; }

    .cotas-grid { grid-template-columns: repeat(2, 1fr); }
    .cotas-special { flex-direction: column; align-items: flex-start; }

    .cronograma-steps { grid-template-columns: 1fr 1fr; }

    .orcamento-block {
      grid-template-columns: 1fr 1fr;
      padding: 2rem 1.5rem;
    }
    .orc-total {
      grid-column: span 2;
      border-right: none;
      border-bottom: 1px solid rgba(201,168,76,0.15);
      padding-right: 0;
      padding-bottom: 1.5rem;
    }

    .mercado-numbers { grid-template-columns: 1fr; }
    .mercado-num-block { padding: 2.5rem 1.5rem; }

    footer {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
      padding: 2rem 1.5rem;
    }

    .cta-contacts { gap: 2rem; }

    /* Quote menor no tablet */
    .problema-quote p { font-size: 1.2rem; }
  }

  /* ═══════════════════════════════════════
     RESPONSIVE — MOBILE (≤ 480px)
  ═══════════════════════════════════════ */
  @media (max-width: 480px) {
    section { padding: 4rem 1.25rem; }
    #hero { padding: 0 1.25rem; }
    #cta { padding: 5rem 1.25rem; }

    /* Hero: evita que o título quebre a tela */
    .hero-title { font-size: clamp(3rem, 16vw, 5rem); line-height: 0.95; }
    .hero-subtitle { font-size: clamp(1.1rem, 5vw, 1.6rem); letter-spacing: 0.08em; }
    .hero-desc { font-size: 0.9rem; max-width: 100%; }
    .hero-cta { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; padding: 1rem 1.5rem; }

    /* Section titles */
    .section-title { font-size: clamp(2rem, 10vw, 2.8rem); }

    /* Problema */
    .problema-card { padding: 1.25rem 1.25rem; }
    .problema-quote { padding: 2rem 1.25rem; }
    .problema-quote p { font-size: 1.1rem; }

    /* Solução: 1 coluna já vem do 900px, só ajusta padding */
    .solucao-card { padding: 2rem 1.5rem; }

    /* Impacto: anéis ainda menores */
    .impacto-visual { height: 260px; }
    .impacto-ring:nth-child(1) { width: 160px; height: 160px; }
    .impacto-ring:nth-child(2) { width: 210px; height: 210px; }
    .impacto-ring:nth-child(3) { width: 248px; height: 248px; }
    .impacto-center .big-num { font-size: 3rem; }

    /* Cotas: 1 coluna */
    .cotas-grid { grid-template-columns: 1fr; }
    .cotas-special { padding: 1.5rem 1.25rem; }

    /* Cronograma: 1 coluna */
    .cronograma-steps { grid-template-columns: 1fr; }
    .cronograma-step { padding: 2rem 1.25rem 0; }

    /* Orçamento: 1 coluna */
    .orcamento-block {
      grid-template-columns: 1fr;
      padding: 1.75rem 1.25rem;
    }
    .orc-total {
      grid-column: span 1;
      border-bottom: 1px solid rgba(201,168,76,0.15);
      padding-bottom: 1.25rem;
    }
    .orc-total .value { font-size: 2.2rem; }

    /* CTA title menor */
    .cta-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .cta-contacts { flex-direction: column; gap: 1.5rem; }

    /* Mercado */
    .mercado-big { font-size: clamp(2.5rem, 12vw, 4rem); }
    .mercado-text { font-size: 0.95rem; }

    /* Embaixador */
    .embaixador-card { padding: 2rem 1.25rem; }

    /* Dif grid já é 1 col, só padding */
    .dif-item { padding: 1.5rem 0; }

    /* Nav */
    nav { padding: 1rem 1.25rem; }
    .nav-logo { font-size: 1.1rem; }
  }
