  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600&family=Outfit:wght@400;500;600;700&display=swap');

  :root {
    --navy: #040a1a;
    --navy-deep: #040a1a;
    --navy-mid: #1a2f6b;
    --gold: #9B6B3C;
    --gold-light: #E8BF6A;
    --gold-pale: #F5E9CC;
    --cream: #E6E8EB;
    --cream-dark: #D9DDE1;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-muted: #6B6B8A;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
  }

  .legacy-content, .legacy-content *, .legacy-content *::before, .legacy-content *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    background-image:
      repeating-linear-gradient(
        0deg,
        rgba(203, 151, 53, 0.02) 0px,
        rgba(203, 151, 53, 0.02) 1px,
        transparent 1px,
        transparent 40px
      ),
      repeating-linear-gradient(
        90deg,
        rgba(203, 151, 53, 0.02) 0px,
        rgba(203, 151, 53, 0.02) 1px,
        transparent 1px,
        transparent 40px
      );
  }

  /* ── NAV ── */
  #main-nav {
    position: sticky; top: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.75rem 4rem;
    background: var(--white);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(203, 151, 53, 0.1);
    transition: padding 0.3s;
  }
  #main-nav.scrolled { padding: 0.9rem 4rem; }
  .nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--navy); margin-right: 2rem; }
  .nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
  .nav-links a { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.08em; color: var(--navy); text-decoration: none; transition: all 0.3s; position: relative; }
  .nav-links a::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
  .nav-links a:hover { color: var(--gold); transform: translateY(-3px); }
  .nav-links a:hover::after { width: 100%; }

  .hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }

  .hamburger-menu span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
  }

  .hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .mobile-nav-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-bottom: 1px solid rgba(203, 151, 53, 0.1);
    z-index: 99;
    overflow-y: auto;
  }

  .mobile-nav-menu.active {
    display: flex;
  }

  .mobile-nav-menu a {
    padding: 14px 0;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid rgba(203, 151, 53, 0.1);
    font-weight: 500;
    font-size: 14px;
  }

  .mobile-nav-menu a:last-child {
    border-bottom: none;
  }

  .mobile-nav-menu a[style*="color: var(--gold)"],
  .mobile-nav-menu a.gold {
    color: var(--gold);
  }

  /* ── HERO ── */
  .hero { min-height: 100vh; background: var(--cream) url('/Imagens/Fundo_claro.png') center/cover fixed no-repeat; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 6rem 2rem 4rem; position: relative; overflow: hidden; }
  .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(203,151,53,0.08) 0%, transparent 70%), radial-gradient(ellipse 60% 40% at 20% -10%, rgba(203,151,53,0.05) 0%, transparent 60%); pointer-events: none; }
  .hero-triangle-bg { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 900px; height: 500px; opacity: 0.05; clip-path: polygon(50% 0%, 0% 100%, 100% 100%); background: var(--navy); z-index: 2; }
  .hero-eyebrow { font-family: var(--font-body); font-size: clamp(0.6rem, 1.5vw, 0.75rem); font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: clamp(1rem, 3vw, 1.5rem); opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 0.2s ease forwards; }
  .hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 6.5rem); font-weight: 300; line-height: 1.05; color: var(--navy); max-width: 900px; margin-bottom: 1rem; opacity: 0; transform: translateY(30px); animation: fadeUp 0.9s 0.4s ease forwards; }
  .hero h1 em { font-style: italic; color: var(--gold); }
  .hero-tagline { font-family: var(--font-display); font-size: clamp(1rem, 2.2vw, 1.5rem); font-weight: 300; font-style: italic; color: var(--navy); margin-bottom: clamp(1.5rem, 4vw, 3rem); opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s 0.6s ease forwards; }
  .hero-ctas { display: flex; gap: clamp(0.5rem, 1vw, 1rem); flex-wrap: wrap; justify-content: center; opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s 0.8s ease forwards; }
  .btn-primary {
    font-family: var(--font-body);
    font-size: clamp(13px, 3vw, 15px);
    font-weight: 700;
    padding: clamp(12px, 2.5vw, 16px) clamp(28px, 6vw, 40px);
    background: linear-gradient(135deg, var(--gold) 0%, #d4a946 100%);
    color: var(--navy-deep);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    min-height: 44px;
    box-shadow: 0 12px 40px rgba(155, 107, 60, 0.35);
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
  }
  .btn-primary:hover::before {
    left: 100%;
  }
  .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(155, 107, 60, 0.45);
  }
  .btn-primary:active {
    transform: translateY(-1px);
  }
  .btn-secondary {
    font-family: var(--font-body);
    font-size: clamp(13px, 3vw, 15px);
    font-weight: 700;
    padding: clamp(12px, 2.5vw, 16px) clamp(28px, 6vw, 40px);
    background: rgba(4, 10, 26, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--navy);
    border: 2px solid rgba(4, 10, 26, 0.2);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
    min-height: 44px;
  }
  .btn-secondary:hover {
    background: rgba(4, 10, 26, 0.15);
    border-color: rgba(4, 10, 26, 0.4);
    transform: translateY(-4px);
  }
  .hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0; animation: fadeUpCentered 1s 1.4s ease forwards; }
  .hero-scroll span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); opacity: 0.4; }
  .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(203,151,53,0.6), transparent); animation: scrollPulse 2s ease-in-out infinite; }

  /* ── DIVIDER ── */
  .divider { height: 1px; background: var(--gold); opacity: 0.25; margin: 0; }

  /* ── SECTION BASE ── */
  .section { padding: 6rem 4rem; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-size: clamp(0.6rem, 1.2vw, 0.7rem);
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    transition: letter-spacing 0.35s ease;
  }
  .section:hover .section-label {
    letter-spacing: 0.4em;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.12;
    color: var(--navy);
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    letter-spacing: -1px;
    position: relative;
  }
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: all 0.35s ease;
  }
  .section:hover .section-title::after {
    opacity: 1;
    width: 100px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section p { text-indent: 1.5em; }

  /* ── MVV ── */
  .mvv {
    background: linear-gradient(135deg, var(--navy) 0%, rgba(10, 21, 48, 0.95) 50%, var(--navy) 100%);
    background-image: url('/Imagens/Fundo.png'), linear-gradient(135deg, var(--navy) 0%, rgba(10, 21, 48, 0.95) 50%, var(--navy) 100%);
    background-size: cover, auto;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
  }
  .mvv::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(203, 151, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .mvv .section-title {
    color: var(--cream);
    margin-bottom: 2rem;
    /* Título de seção unificado (2026-08-23, pedido do usuário): este e
       .regras eram os 2 maiores da página (clamp 2.5rem-4rem, bem acima do
       clamp 2rem-3.8rem base usado pelas outras seções) - reduzidos 10% e
       aplicados às demais seções (.manifesto/.niveis/.metodo-content/
       .produtos-header), unificando todos os subtítulos num só tamanho. */
    font-size: clamp(2.25rem, 4.5vw, 3.6rem) !important;
    font-weight: 400;
    letter-spacing: -1px;
  }
  .mvv .section-title em { color: var(--gold); }
  .mvv-intro { font-family: var(--font-display); font-style: italic; max-width: 700px; font-size: clamp(15px, 4vw, 18px); font-weight: 400; line-height: 1.8; color: var(--cream); margin-bottom: 5rem; }
  .mvv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; }

  .mvv-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(230, 232, 235, 0.75) 100%);
    border: 1px solid rgba(18, 33, 78, 0.08);
    border-radius: 16px;
    padding: clamp(32px, 8vw, 48px) clamp(24px, 6vw, 40px);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: cardEnter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
  }

  .mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9B6B3C, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .mvv-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(203, 151, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .mvv-card:hover {
    border-color: rgba(203,151,53,0.3);
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 20px 60px rgba(18, 33, 78, 0.12);
  }

  .mvv-card:hover::before {
    transform: scaleX(1);
  }

  .mvv-card:hover::after {
    opacity: 1;
    top: -30%;
    right: -30%;
  }

  .mvv-card:nth-child(1) { animation-delay: 0.1s; }
  .mvv-card:nth-child(2) { animation-delay: 0.25s; }
  .mvv-card:nth-child(3) { animation-delay: 0.4s; }

  .mvv-card-label {
    font-family: 'Outfit', sans-serif;
    font-size: 20rem;
    font-weight: 900;
    font-style: normal;
    color: #9B6B3C !important;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
    letter-spacing: 4px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .mvv-card:hover .mvv-card-label {
    transform: scale(1.08) rotateX(5deg);
    filter: drop-shadow(0 8px 16px rgba(203,151,53,0.3));
  }

  .mvv-card h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.25rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .mvv-card:hover h3 {
    color: var(--gold);
    transform: scale(1.05);
  }

  .mvv-card p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--navy);
    position: relative;
    z-index: 1;
    text-align: justify;
    transition: all 0.4s ease;
  }

  .valores-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-top: 1.75rem;
    position: relative;
    z-index: 1;
  }

  .valor-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--navy);
    transition: all 0.3s;
  }

  .valor-item:hover {
    color: var(--gold);
    transform: translateX(4px);
  }

  .valor-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    flex-shrink: 0;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transition: transform 0.3s;
  }

  .valor-item:hover::before {
    transform: scale(1.3) rotate(180deg);
  }

  @keyframes cardEnter {
    from {
      opacity: 0;
      transform: translateY(40px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  /* ── MANIFESTO ── */
  .manifesto { background: var(--cream); background-image: url('/Imagens/Fundo_claro.png'); background-size: cover; background-position: center; background-attachment: fixed; position: relative; overflow: hidden; }
  .manifesto::before { content: ''; position: absolute; right: -100px; top: 50%; transform: translateY(-50%); width: 600px; height: 600px; opacity: 0.04; clip-path: polygon(50% 0%, 0% 100%, 100% 100%); background: var(--navy); }
  .manifesto .section-label em { color: var(--gold); }

  /* ── NÍVEIS DE IDENTIFICAÇÃO ── */
  .niveis { background: var(--white); position: relative; overflow: visible; padding: 4rem 1rem !important; }
  .niveis::before { content: ''; position: absolute; top: 10%; left: 5%; width: 80px; height: 80px; background: #9B6B3C; clip-path: polygon(50% 0%, 100% 86.6%, 0% 86.6%); opacity: 0.05; pointer-events: none; }
  .niveis::after { content: ''; position: absolute; bottom: 20%; right: 8%; width: 200px; height: 200px; background: #040a1a; clip-path: polygon(50% 0%, 100% 86.6%, 0% 86.6%); opacity: 0.05; pointer-events: none; }
  .niveis-intro::before { content: ''; position: absolute; top: 50%; left: 15%; width: 100px; height: 100px; background: #E6E8EB; clip-path: polygon(50% 0%, 100% 86.6%, 0% 86.6%); opacity: 0.05; }
  .niveis-intro { position: relative; }
  .section-inner .tri-1 { position: absolute; top: 8%; right: 10%; width: 150px; height: 150px; background: #9B6B3C; clip-path: polygon(50% 0%, 100% 86.6%, 0% 86.6%); opacity: 0.05; pointer-events: none; }
  .section-inner .tri-2 { position: absolute; bottom: 15%; left: 8%; width: 120px; height: 120px; background: #E6E8EB; clip-path: polygon(50% 0%, 100% 86.6%, 0% 86.6%); opacity: 0.05; pointer-events: none; }
  .section-inner .tri-3 { position: absolute; top: 25%; right: 5%; width: 90px; height: 90px; background: #040a1a; clip-path: polygon(50% 0%, 100% 86.6%, 0% 86.6%); opacity: 0.05; pointer-events: none; }
  .section-inner .tri-4 { position: absolute; top: 45%; left: 3%; width: 180px; height: 180px; background: #9B6B3C; clip-path: polygon(50% 0%, 100% 86.6%, 0% 86.6%); opacity: 0.05; pointer-events: none; }
  .section-inner .tri-5 { position: absolute; bottom: 5%; right: 12%; width: 110px; height: 110px; background: #E6E8EB; clip-path: polygon(50% 0%, 100% 86.6%, 0% 86.6%); opacity: 0.05; pointer-events: none; }
  .section-inner .tri-6 { position: absolute; top: 35%; right: 25%; width: 140px; height: 140px; background: #040a1a; clip-path: polygon(50% 0%, 100% 86.6%, 0% 86.6%); opacity: 0.05; pointer-events: none; }
  .section-inner .tri-7 { position: absolute; top: 15%; left: 25%; width: 95px; height: 95px; background: #9B6B3C; clip-path: polygon(50% 0%, 100% 86.6%, 0% 86.6%); opacity: 0.05; pointer-events: none; }
  .section-inner .tri-8 { position: absolute; bottom: 25%; right: 30%; width: 170px; height: 170px; background: #E6E8EB; clip-path: polygon(50% 0%, 100% 86.6%, 0% 86.6%); opacity: 0.05; pointer-events: none; }
  .section-inner .tri-9 { position: absolute; top: 50%; right: 3%; width: 125px; height: 125px; background: #040a1a; clip-path: polygon(50% 0%, 100% 86.6%, 0% 86.6%); opacity: 0.05; pointer-events: none; }
  .section-inner .tri-10 { position: absolute; bottom: 40%; left: 40%; width: 160px; height: 160px; background: #9B6B3C; clip-path: polygon(50% 0%, 100% 86.6%, 0% 86.6%); opacity: 0.05; pointer-events: none; }
  .niveis .section-inner { position: relative; }
  .niveis .section-title { font-size: clamp(2.25rem, 4.5vw, 3.6rem) !important; }
  .niveis .section-title em { color: var(--gold); }
  .niveis-intro { font-family: var(--font-display); font-style: italic; max-width: 700px; font-size: clamp(15px, 4vw, 18px); font-weight: 400; line-height: 1.8; color: var(--navy); margin-bottom: 2.5rem; }
  .timeline-container { position: relative; padding: 2rem 0; }
  .timeline-container::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%); transform: translateX(-50%); }

  .timeline-card { position: relative; margin-bottom: 0.5rem; display: flex; align-items: flex-start; gap: 2rem; }
  .timeline-card:nth-child(odd) { flex-direction: row; }
  .timeline-card:nth-child(even) { flex-direction: row-reverse; }
  .timeline-marker { position: absolute; left: 50%; top: 0; transform: translateX(-50%); z-index: 10; }
  .timeline-dot { width: 18px; height: 18px; background: var(--gold); border: 2px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 3px rgba(203, 151, 53, 0.15); }
  .timeline-content { width: calc(50% - 1.5rem); padding: 1.75rem; background: var(--cream); border: 1px solid rgba(203, 151, 53, 0.15); border-radius: 12px; position: relative; transition: all 0.3s ease; }
  .timeline-card:hover .timeline-content { border-color: var(--gold); box-shadow: 0 12px 32px rgba(203, 151, 53, 0.1); transform: translateY(-4px); }

  .nivel-badge { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; line-height: 1; margin-bottom: 0.75rem; display: inline-block; }
  .nivel-1 { color: rgba(203, 151, 53, 0.4); }
  .nivel-2 { color: rgba(203, 151, 53, 0.7); }
  .nivel-3 { color: var(--gold); }

  .timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.5rem;
    transition: all 0.35s ease;
  }
  .timeline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1rem;
    transition: color 0.35s ease;
  }
  .nivel-description { margin-bottom: 1rem; }

  .nivel-features { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
  .nivel-features li {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-size: clamp(15px, 4vw, 18px);
    font-weight: 400;
    color: var(--navy);
    padding-left: 1.3rem;
    position: relative;
    line-height: 1.8;
    transition: all 0.35s ease;
  }
  .nivel-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: bold; }

  /* Timeline - Nível Dark */
  .timeline-content.nivel-dark {
    background: linear-gradient(135deg, var(--navy-deep) 0%, rgba(10, 21, 48, 0.92) 100%);
    border: 1px solid var(--gold);
  }
  .timeline-content.nivel-dark h3 {
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.5px;
    font-family: 'sans-serif';
  }
  .timeline-content.nivel-dark p {
    color: rgba(255, 255, 255, 0.8);
  }
  .timeline-content.nivel-dark .nivel-features li {
    color: rgba(255, 255, 255, 0.8);
  }
  .timeline-card:hover .timeline-content.nivel-dark {
    box-shadow: 0 12px 32px rgba(203, 151, 53, 0.2);
    border-color: var(--gold-light);
  }
  .timeline-card:hover .timeline-content.nivel-dark h3 {
    color: var(--gold-light);
  }
  .manifesto .section-title { color: var(--navy); font-size: clamp(2.25rem, 4.5vw, 3.6rem) !important; }
  .manifesto .section-label { color: var(--navy); }
  .manifesto-text { max-width: 780px; }
  .manifesto-text p { font-family: var(--font-display); font-size: clamp(0.9rem, 1.87vw, 1.5rem); font-weight: 300; line-height: 1.7; color: var(--navy); margin-bottom: clamp(1rem, 3vw, 1.5rem); opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; text-align: justify; }
  .manifesto-text p.visible, .manifesto-text.visible p { opacity: 1; transform: translateY(0); }
  .manifesto-text p:nth-child(2) { transition-delay: 0.1s; }
  .manifesto-text p:nth-child(3) { transition-delay: 0.2s; }
  .manifesto-text p:nth-child(4) { transition-delay: 0.3s; }
  .manifesto-text strong { color: var(--gold); font-weight: 600; }
  .manifesto-assinatura { margin-top: 3rem; border-top: 2px solid var(--gold); padding-top: 1.5rem; display: flex; align-items: center; gap: 1rem; opacity: 0; transform: translateY(20px); transition: opacity 0.7s 0.5s, transform 0.7s 0.5s; }
  .manifesto-assinatura.visible { opacity: 1; transform: translateY(0); }
  .assinatura-badge { width: 48px; height: 48px; flex-shrink: 0; }
  .assinatura-info p:first-child { font-family: var(--font-display); font-size: 1.573rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
  .assinatura-info p:last-child { font-size: 1.144rem; letter-spacing: 0.1em; color: rgba(10,21,48,0.5); margin-top: 0; }

  /* ── MÉTODO ── */
  .metodo { background: var(--cream-dark); background-image: url('/Imagens/Fundo_claro.png'); background-size: cover; background-position: center; background-attachment: fixed; }
  /* .metodo-pilares vive como irmão de .metodo-visual/.metodo-content no HTML
     (não mais aninhado dentro de .metodo-content) - necessário pro carrossel
     mobile, já que um .pilar com flex-basis em % não resolvia corretamente
     quando o pai (.metodo-content) usava display:contents pra reordenar.
     Aqui no desktop, .metodo-visual ocupa as duas linhas da coluna 1 e
     .metodo-content/.metodo-pilares empilham na coluna 2, replicando o
     layout original de visual-alto ao lado de texto+pilares. */
  .metodo-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 6rem; row-gap: 2rem; align-items: center; }
  .metodo-visual { grid-column: 1; grid-row: 1 / 3; display: flex; justify-content: center; align-items: center; }
  .metodo-content { grid-column: 2; grid-row: 1; }
  .triangulo-svg { width: 100%; max-width: 540px; height: auto; display: block; }
  .metodo-content .section-title { margin-bottom: 1rem; font-size: clamp(2.25rem, 4.5vw, 3.6rem) !important; }
  .metodo-content .section-label { font-size: clamp(0.6rem, 1.2vw, 0.7rem); font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: clamp(0.75rem, 2vw, 1rem); transition: letter-spacing 0.35s ease; font-family: var(--font-body); font-style: normal; }
  .metodo-content p { font-family: var(--font-display); font-style: italic; font-size: clamp(0.9rem, 1.87vw, 1.5rem); line-height: 1.4; color: var(--text-muted); margin-bottom: 1.5rem; }
  .metodo-pilares { grid-column: 2; grid-row: 2; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0; }
  .pilar { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: var(--white); border-left: 3px solid var(--gold); border-radius: 12px; position: relative; overflow: hidden; transition: all 0.35s ease; }
  .pilar-num { font-family: var(--font-display); font-size: 2rem; font-weight: 300; line-height: 1; color: var(--gold); flex-shrink: 0; width: 36px; }
  .pilar-text h4 { font-size: 0.94rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.25rem; }
  .pilar-text p { font-size: 1rem; line-height: 1.6; color: var(--text-muted); margin: 0; }
  .pilar::before { content: ''; position: absolute; top: 0; right: -100%; width: 200%; height: 100%; background: radial-gradient(circle at top right, rgba(203,151,53,0.1) 0%, transparent 70%); transition: right 0.35s ease; pointer-events: none; }
  .pilar:hover { transform: translateY(-8px); border-left-color: var(--gold); box-shadow: 0 12px 24px rgba(0,0,0,0.12); background: linear-gradient(135deg, #FAFBFC 0%, #F5F5F5 100%); }
  .pilar:hover::before { right: 0; }
  .pilar-identidade { border-left-color: rgba(203,151,53,0.4); background: var(--navy); }
  .pilar-identidade .pilar-num { color: var(--gold); }
  .pilar-identidade .pilar-text h4 { color: rgba(255,255,255,0.9); }
  .pilar-identidade .pilar-text p { color: rgba(255,255,255,0.6); margin: 0; }
  .pilar-identidade:hover { transform: translateY(-8px); box-shadow: none; background: var(--navy); }
  .pilar-identidade:hover::before { display: none; }

  /* ── PRODUTOS ── */
  .produtos {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.98) 100%);
    position: relative;
    overflow: hidden;
  }
  .produtos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .produtos-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .produtos-header .section-title { font-size: clamp(2.25rem, 4.5vw, 3.6rem) !important; }
  .produtos-header .section-label {
    font-size: clamp(0.6rem, 1.2vw, 0.7rem);
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-style: normal;
  }
  .produtos-header p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 100%;
    font-weight: 300;
  }
  .produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    background: transparent;
    border: none;
    position: relative;
  }
  .produtos-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(203, 151, 53, 0.3), transparent);
    transform: translateX(-50%);
    pointer-events: none;
    opacity: 0.5;
  }
  .produto-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 100%);
    padding: 2.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    border: 1px solid rgba(203,151,53,0.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    opacity: 0;
    animation: slideInCard 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
  .produto-card:nth-child(1) { animation-delay: 0.1s; }
  .produto-card:nth-child(2) { animation-delay: 0.25s; }
  .produto-card:nth-child(3) { animation-delay: 0.4s; }
  .produto-card:nth-child(4) { animation-delay: 0.55s; }
  .produto-card:nth-child(5) { animation-delay: 0.7s; }
  .produto-card:nth-child(6) { animation-delay: 0.85s; }
  .produto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .produto-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(203,151,53,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
  }
  .produto-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(203,151,53,0.15), 0 0 60px rgba(203,151,53,0.05);
    border-color: rgba(203,151,53,0.4);
  }
  .produto-card:hover::before {
    transform: scaleX(1);
  }
  .produto-card:hover::after {
    top: -30%;
    right: -30%;
  }
  .produto-card-num {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(203,151,53,0.3) 0%, rgba(203,151,53,0.08) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: absolute;
    right: -0.5rem;
    top: -1rem;
    transition: all 0.35s ease;
  }
  .produto-card:hover .produto-card-num {
    transform: scale(1.1) rotate(-5deg);
    opacity: 1;
  }
  .produto-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    opacity: 0.95;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(203, 151, 53, 0.2);
  }
  .produto-card:hover .produto-icon {
    transform: scale(1.15) translateY(-8px);
    box-shadow: 0 12px 32px rgba(203, 151, 53, 0.35);
  }
  .produto-card h3 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 500;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 0.5rem;
    transition: all 0.35s ease;
  }
  .produto-card:hover h3 {
    color: var(--gold);
    transform: translateX(4px);
  }
  .produto-card-sub {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-weight: 600;
    transition: color 0.35s ease;
  }
  .produto-card:hover .produto-card-sub {
    color: var(--gold);
  }
  .produto-card p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-size: clamp(15px, 4vw, 16px);
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    color: var(--text-muted);
    transition: color 0.35s ease;
  }
  .produto-card-sub {
    text-indent: 0 !important;
  }
  .produto-card[data-slug="sessao-individual"] h3 {
    line-height: 1.3;
  }
  .produto-card:hover p {
    color: var(--navy);
  }

  /* ── NUMBERS ── */
  .numbers {
    background-image: linear-gradient(135deg, rgba(4, 10, 26, 0.8) 0%, rgba(10, 21, 48, 0.8) 100%), url('/Imagens/Globo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .numbers::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 600px;
    height: 100%;
    background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(203, 151, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .numbers-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
  .numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .number-item {
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
  }
  .number-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(203,151,53,0.08) 0%, transparent 100%);
    transform: scale(0);
    transition: transform 0.35s ease;
  }
  .number-item:hover::before {
    transform: scale(1);
  }
  .number-item:hover {
    background: rgba(203,151,53,0.05);
  }
  .number-big {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
  }
  .number-item:hover .number-big {
    transform: scale(1.15);
    filter: drop-shadow(0 8px 16px rgba(203, 151, 53, 0.3));
  }
  .number-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    transition: color 0.35s ease;
    position: relative;
    z-index: 1;
    font-weight: 600;
  }
  .number-item:hover .number-label {
    color: var(--gold);
  }

  /* ── REDES ── */
  .redes {
    background: linear-gradient(180deg, #D9DDE1 0%, #CCCCCC 100%);
    position: relative;
    overflow: hidden;
  }
  .redes::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(203, 151, 53, 0.02) 10px,
        rgba(203, 151, 53, 0.02) 20px
      );
    pointer-events: none;
  }
  .redes-header {
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
  }
  .redes-header .section-label {
    font-size: clamp(0.6rem, 1.2vw, 0.7rem);
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-style: normal;
  }
  .redes-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    font-family: 'sans-serif';
  }
  .redes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .rede-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 100%);
    border: 1px solid rgba(203,151,53,0.15);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }
  .rede-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(203,151,53,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
  }
  .rede-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.35s;
    transform-origin: left;
  }
  .rede-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(203,151,53,0.15);
    border-color: rgba(203,151,53,0.3);
  }
  .rede-card:hover::before {
    top: -30%;
    right: -30%;
  }
  .rede-card:hover::after {
    transform: scaleX(1);
  }
  .rede-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(203, 151, 53, 0.2);
    position: relative;
    z-index: 1;
  }
  .rede-card:hover .rede-icon {
    transform: scale(1.2) translateY(-8px);
    box-shadow: 0 12px 32px rgba(203, 151, 53, 0.35);
  }
  .rede-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--navy);
    transition: transform 0.35s ease;
  }
  .rede-card:hover .rede-icon svg {
    transform: rotate(10deg) scale(1.15);
  }
  .rede-card h3 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 500;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 0.5rem;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
  }
  .rede-card:hover h3 {
    color: var(--gold);
  }
  .rede-card p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-size: clamp(15px, 4vw, 16px);
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    transition: color 0.35s ease;
    position: relative;
    z-index: 1;
    font-family: 'sans-serif';
  }
  .rede-card:hover p {
    color: var(--navy);
  }
  .rede-handle {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 600;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
  }
  .rede-card:hover .rede-handle {
    letter-spacing: 0.15em;
  }

  /* ── REGRAS ── */
  .regras {
    background-image: url('/Imagens/Fundo.png'), linear-gradient(135deg, rgba(6, 13, 31, 0.8) 0%, rgba(10, 21, 48, 0.8) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
  }
  .regras::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 150%;
    background: radial-gradient(ellipse 40% 80% at 20% 50%, rgba(203, 151, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .regras .section-title {
    color: var(--white);
    /* Mesma unificação de tamanho de título - ver comentário em .mvv .section-title. */
    font-size: clamp(2.25rem, 4.5vw, 3.6rem) !important;
    font-weight: 400;
    position: relative;
    z-index: 1;
  }
  .regras .section-label {
    color: var(--gold);
    position: relative;
    z-index: 1;
  }
  .regras-intro {
    font-family: var(--font-display);
    font-style: italic;
    max-width: 640px;
    margin-bottom: 3.5rem;
    font-size: clamp(0.9rem, 1.87vw, 1.5rem);
    line-height: 1.8;
    color: var(--white);
    font-weight: 300;
    position: relative;
    z-index: 1;
  }
  .regras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: transparent;
    border: none;
    position: relative;
    z-index: 1;
  }
  .regra-item {
    background: linear-gradient(135deg, #E8EAEF 0%, #D9DDE1 100%);
    padding: 2.5rem 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(203,151,53,0.2);
    opacity: 0;
    animation: slideInCard 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
  .regra-item:nth-child(1) { animation-delay: 0.1s; }
  .regra-item:nth-child(2) { animation-delay: 0.25s; }
  .regra-item:nth-child(3) { animation-delay: 0.4s; }
  .regra-item:nth-child(4) { animation-delay: 0.55s; }
  .regra-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(203,151,53,0.15) 0%, transparent 70%);
    transition: right 0.35s ease;
    pointer-events: none;
  }
  .regra-item:hover {
    background: linear-gradient(135deg, #D9DDE1 0%, #CCCCCC 100%);
    transform: translateY(-12px);
    border-color: rgba(203,151,53,0.4);
    box-shadow: 0 24px 48px rgba(0,0,0,0.2), 0 0 40px rgba(203,151,53,0.1);
  }
  .regra-item:hover::before {
    right: 0;
  }
  .regra-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(203,151,53,0.15) 0%, rgba(203,151,53,0.05) 100%);
    border-radius: 50%;
    border: 2px solid var(--gold);
    transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(203, 151, 53, 0.15);
  }
  .regra-item:hover .regra-num {
    transform: scale(1.3) rotate(-10deg);
    border-color: var(--gold);
    background: radial-gradient(circle, rgba(203,151,53,0.3) 0%, rgba(203,151,53,0.15) 100%);
    box-shadow: 0 12px 32px rgba(203, 151, 53, 0.3);
  }
  .regra-body {
    position: relative;
    z-index: 1;
  }
  .regra-body h4 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.05em;
    text-transform: none;
    color: var(--navy);
    margin-bottom: 0.6rem;
    transition: all 0.35s ease;
  }
  .regra-item:hover .regra-body h4 {
    color: var(--gold);
    transform: translateX(4px);
  }
  .regra-body p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-size: clamp(15px, 4vw, 16px);
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    color: var(--navy);
    transition: color 0.35s ease;
  }
  .regra-item:hover .regra-body p {
    color: rgba(10, 21, 48, 0.9);
  }

  /* ── CTA FINAL ── */
  .cta-final {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(10, 21, 48, 0.03) 10px,
        rgba(10, 21, 48, 0.03) 20px
      );
    pointer-events: none;
  }
  .cta-final::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 150%;
    background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(10, 21, 48, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-inner { position: relative; z-index: 1; }
  .cta-final h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    font-style: italic;
    color: var(--navy-deep);
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -1px;
  }
  .cta-final h2 em { font-style: italic; }
  .cta-final p {
    font-size: 1rem;
    color: rgba(18,33,78,0.7);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    font-family: 'sans-serif';
  }
  .btn-cta {
    font-family: var(--font-body);
    font-size: clamp(13px, 3vw, 15px);
    font-weight: 700;
    padding: clamp(12px, 2.5vw, 16px) clamp(28px, 6vw, 40px);
    background: linear-gradient(135deg, var(--gold) 0%, #d4a946 100%);
    color: var(--navy-deep);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    min-height: 44px;
    box-shadow: 0 12px 40px rgba(155, 107, 60, 0.35);
    z-index: 2;
  }
  .btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
  }
  .btn-cta:hover::before {
    left: 100%;
  }
  .btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(155, 107, 60, 0.45);
  }
  .btn-cta:active {
    transform: translateY(-1px);
  }
  .btn-cta-ghost {
    font-family: var(--font-body);
    font-size: clamp(13px, 3vw, 15px);
    font-weight: 700;
    padding: clamp(12px, 2.5vw, 16px) clamp(28px, 6vw, 40px);
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-left: clamp(0, 1vw, 1rem);
    position: relative;
    min-height: 44px;
    z-index: 2;
  }
  .btn-cta-ghost:hover {
    background: var(--navy-deep);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(10,21,48,0.15);
  }

  /* ── COOKIE BUTTONS ── */
  .btn-cookie {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, #d4a946 100%);
    color: var(--navy);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
  }
  .btn-cookie::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
  }
  .btn-cookie:hover::before {
    left: 100%;
  }
  .btn-cookie:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(155, 107, 60, 0.35);
  }

  .btn-cookie-ghost {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
  }
  .btn-cookie-ghost:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
  }

  /* ── FOOTER ── */
  /* Note: bare `footer{}` rule removed - the legacy <footer> markup was stripped
     from institucional-html.ts (superseded by the React Footer component), so
     this element selector was only matching (and breaking) that component. */
  .footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
  .footer-tagline { font-family: var(--font-display); font-size: 0.95rem; font-style: italic; color: rgba(255,255,255,0.35); }
  .footer-links { display: flex; gap: 2.5rem; align-items: center; background: none; border: none; padding: 0; }
  .footer-links a { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.18); margin-top: 0.35rem; }

  /* ── KEYFRAMES ── */
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
  /* Variante pro .hero-scroll: ele usa transform: translateX(-50%) pra ficar
     centralizado sob o vértice do triângulo. O keyframe fadeUp acima define
     só translateY no "to" - como transform não é aditivo entre a regra base
     e a animação, ao terminar (animation-fill-mode: forwards) o translateX(-50%)
     era perdido de vez, e o indicador "Descer" ficava deslocado pra direita
     do vértice. Aqui o translateX(-50%) fica presente nos dois keyframes. */
  @keyframes fadeUpCentered {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }
  @keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
  @keyframes slideInCard { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes countUp { from { content: '0'; } to { content: 'complete'; } }
  @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }

  /* ── REVEAL ── */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* Modal system (overlay, cadastro, login, DDI selector, etc) lives in the
     global shared-modals.css, loaded site-wide from layout.tsx. This file
     used to carry its own full duplicate of every modal/cadastro/ddi-selector
     rule with slightly different values, which - loading after
     shared-modals.css - silently overrode it, making the modals look
     different on /institucional than on the landing page. Removed. */

  /* ── MOBILE: All sizes up to 768px ── */
  @media (max-width: 768px) {
    /* Navigation */
    #main-nav { padding: 0.75rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
    #main-nav.scrolled { padding: 0.65rem 1rem; }
    .nav-logo { gap: 0.8rem !important; }
    .nav-logo img { height: 50px; width: auto; flex-shrink: 1; }
    .nav-links { display: none; }
    .hamburger-menu { display: flex; }
    .btn-nav { padding: 0.35rem 0.6rem; font-size: 0.65rem; margin-right: 0; border: none; }

    /* Hero: sem overrides mobile de propósito - o hero usa as mesmas regras
       do desktop (100vh, triângulo de fundo, "Descer" visível) em qualquer
       largura. Esse bloco existiu aqui antes mas nunca tinha efeito nenhum
       (um comentário quebrado em outro lugar do arquivo invalidava todo
       este @media), então visualmente o hero SEMPRE se comportou assim no
       mobile - resetar as regras "sempre esteve ativo, arrumar não" corrigiu
       o parser sem querer mudar o hero. Removido de novo por pedido do
       usuário: reduzir hero/esconder o triângulo e o "Descer" no mobile
       era uma mudança de verdade, não um bug a corrigir. */

    /* Sections */
    .section { padding: 2.5rem 1rem; }
    .section-title { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 1rem; }
    .section-label { font-size: 0.6rem; margin-bottom: 0.75rem; }

    /* MVV — carrossel (peek de 85%, snap central, sem scrollbar visível) */
    .mvv-grid { grid-template-columns: none; display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 1rem; padding-bottom: 0.25rem; }
    .mvv-grid::-webkit-scrollbar { display: none; }
    .mvv-card { flex: 0 0 85%; scroll-snap-align: center; padding: 2rem 1.5rem; }
    .mvv-card-label { font-size: 8rem; }
    .mvv-card h3 { font-size: 1rem; }
    .mvv-card p { font-size: 0.9rem; }

    /* Níveis/Timeline — carrossel. align-items:stretch no container faz os 3
       .timeline-card terem a mesma altura (a do mais alto); mas .timeline-card
       herda align-items:flex-start da regra base (desktop), então sem
       sobrescrever aqui o .timeline-content (a caixa visível, com borda) não
       esticava junto - a altura igualava só no wrapper invisível. */
    .timeline-container { display: flex; flex-wrap: nowrap; align-items: stretch; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 1rem; padding: 0.5rem 0 1rem; }
    .timeline-container::-webkit-scrollbar { display: none; }
    .timeline-container::before { display: none; }
    .timeline-card { flex: 0 0 85%; align-items: stretch; scroll-snap-align: center; margin-left: 0; margin-bottom: 0; }
    .timeline-marker { display: none; }
    .timeline-content { padding: 1.75rem; width: 100%; height: 100%; box-sizing: border-box; margin-left: 0; border: 1px solid rgba(203,151,53,0.15); }
    .timeline-content h3 { font-size: 1.25rem; }
    .timeline-content p { font-size: 0.85rem; }
    .nivel-badge { font-size: 1.8rem; }

    /* Método — texto, depois triângulo, depois os 4 pilares em carrossel.
       .metodo-visual/.metodo-content/.metodo-pilares são irmãos diretos de
       .metodo-grid no HTML, então basta reordenar via flex order. */
    .metodo-grid { display: flex; flex-direction: column; align-items: stretch; gap: 2rem; }
    .metodo-content { order: 1; }
    .metodo-visual { order: 2; display: flex; justify-content: center; padding: 0 1rem; }
    .triangulo-svg { max-width: 280px; width: 100%; }
    /* flex-direction: row explícito - a regra base usa "column" (lista
       vertical no desktop) e essa propriedade não era resetada aqui, então
       os cards empilhavam verticalmente em vez de formar o carrossel. */
    .metodo-pilares { order: 3; display: flex; flex-direction: row; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 1rem; margin-top: 0; padding-bottom: 0.25rem; }
    .metodo-pilares::-webkit-scrollbar { display: none; }
    .pilar { flex: 0 0 85%; scroll-snap-align: center; padding: 1rem; gap: 0.75rem; }
    .pilar-num { font-size: 1.5rem; width: 28px; }
    .pilar-text h4 { font-size: 0.75rem; }
    .pilar-text p { font-size: 0.8rem; }

    /* Produtos */
    .produtos-header { flex-direction: column; }
    .produtos-header p { font-size: 0.9rem; }
    .produtos-grid { grid-template-columns: 1fr; gap: 1rem; }
    .produto-card { padding: 1.75rem 1.5rem; }
    .produto-card-num { font-size: 3rem; top: 0.5rem; right: 0.75rem; }
    .produto-icon { width: 40px; height: 40px; }
    .produto-card h3 { font-size: 1.4rem; }
    .produto-card p { font-size: 0.85rem; }

    /* Numbers — 2 colunas em vez de empilhado */
    .numbers { padding: 2.5rem 1rem; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .number-item { padding: 2rem 1.5rem; }
    .number-big { font-size: 2.5rem; }
    .number-label { font-size: 0.65rem; }

    /* Redes ("Conteúdo que transforma") — carrossel */
    .redes-grid { grid-template-columns: none; display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 1rem; max-width: 100%; padding-bottom: 0.25rem; }
    .redes-grid::-webkit-scrollbar { display: none; }
    .rede-card { flex: 0 0 85%; scroll-snap-align: center; padding: 1.75rem 1.5rem; }
    .rede-icon { width: 48px; height: 48px; }
    .rede-card h3 { font-size: 1.25rem; }
    .rede-card p { font-size: 0.8rem; }

    /* Regras — carrossel */
    .regras-grid { grid-template-columns: none; display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 1rem; padding-bottom: 0.25rem; }
    .regras-grid::-webkit-scrollbar { display: none; }
    .regra-item { flex: 0 0 85%; scroll-snap-align: center; padding: 1.5rem; gap: 1rem; }
    .regra-num { width: 45px; height: 45px; font-size: 2rem; }
    .regra-body h4 { font-size: 1.3rem; }
    .regra-body p { font-size: 0.9rem; }

    /* CTA Final — botões lado a lado, mesma largura */
    .cta-final { padding: 2.5rem 1rem; }
    .cta-final h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
    .cta-final p { font-size: 0.9rem; }
    .cta-buttons { display: flex; flex-direction: row; gap: 0.75rem; }
    .cta-buttons .btn-cta, .cta-buttons .btn-secondary { flex: none; width: calc(50% - 0.375rem); box-sizing: border-box; padding: 0.85rem 1rem; font-size: 0.75rem; }
    .btn-cta-ghost { padding: 0.85rem 2rem; font-size: 0.75rem; margin-left: 0; margin-top: 0.5rem; }

    /* Footer */
    .footer-inner { flex-direction: column; gap: 1rem; }
    .footer-tagline { font-size: 0.85rem; }
    .footer-links { gap: 1.5rem; flex-wrap: wrap; }
    .footer-links a { font-size: 0.65rem; }
    .footer-copy { font-size: 0.6rem; }

    /* Touch targets (accessibility) */
    .btn-primary, .btn-secondary, .btn-cta, .btn-cta-ghost, .btn-nav { min-height: 44px; }
  }

  /* ── DESKTOP (>768px) ── */
  @media (min-width: 768px) {
    .productos-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

    /* Numbers */
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }

    /* Redes */
    .redes-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

    /* CTA Final */
    .cta-final { padding: 4rem 1.5rem; }
    .btn-cta, .btn-cta-ghost { margin-left: 0.5rem; }

  }

  /* ── FAQ ── */
  .faq { background: var(--white); }
  .faq-list { max-width: 720px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--cream-dark); }
  .faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    line-height: 1;
    color: var(--gold);
    flex-shrink: 0;
  }
  .faq-item[open] summary::after { content: '\2212'; }
  .faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-bottom: 1.25rem;
  }

