    /* ============================================================
       RESET & TOKENS
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --color-bg:         #f5f4f1;
      --color-surface:    #ffffff;
      --color-surface-2:  #f0efe9;
      --color-border:     #e4e2da;
      --color-primary:    #5b4cdb;
      --color-primary-dark: #3d30c4;
      --color-accent:     #c6f135;
      --color-text:       #1a1a24;
      --color-muted:      #7b7a83;
      --color-wa:         #25d366;

      --font-head: 'Sora', sans-serif;
      --font-body: 'DM Sans', sans-serif;

      --radius-sm: 10px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --radius-xl: 40px;

      --shadow-card: 0 2px 20px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
      --shadow-elevated: 0 8px 40px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);

      --transition: all .28s cubic-bezier(.4,0,.2,1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--color-bg);
      color: var(--color-text);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    /* ============================================================
       UTILITIES
    ============================================================ */
    .container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

    /* ============================================================
       HEADER / NAV
    ============================================================ */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(245,244,241,.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--color-border);
      transition: var(--transition);
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--color-text);
      text-decoration: none;
      letter-spacing: -.02em;
    }

    .logo-icon {
      width: 34px; height: 34px;
      background: var(--color-primary);
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
    }
    .logo-icon svg { color: #fff; }

    .nav-links {
      display: flex;
      gap: 8px;
      list-style: none;
    }

    .nav-links a {
      font-size: .875rem;
      font-weight: 500;
      color: var(--color-muted);
      text-decoration: none;
      padding: 7px 14px;
      border-radius: var(--radius-sm);
      transition: var(--transition);
    }

    .nav-links a:hover {
      color: var(--color-text);
      background: var(--color-border);
    }

    .nav-links a.active {
      color: var(--color-primary);
      background: rgba(91,76,219,.08);
    }

    /* mobile nav toggle */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--color-text);
      padding: 6px;
    }

/* ============================================================
   HERO — DARK CINEMA
============================================================ */
    .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: #0b0b12;
    overflow: hidden;
    }

    /* --- Grid de capas ao fundo --- */
    .hero-grid {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 12px;
    padding: 12px;
    pointer-events: none;
    opacity: 0.55;
    }

    .hero-grid-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    animation: scrollUp 18s linear infinite;
    }

    .hero-grid-col.delay-1 { animation-delay: -4.5s; }
    .hero-grid-col.delay-2 { animation-delay: -9s; }
    .hero-grid-col.delay-3 { animation-delay: -13.5s; }

    @keyframes scrollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
    }

    /* Cada "capa" é um card colorido */
    .hero-card {
    flex-shrink: 0;
    width: 100%;
    height: 160px;
    border-radius: 10px;
    background:
        linear-gradient(
        145deg,
        hsl(var(--hue), 45%, 22%) 0%,
        hsl(var(--hue), 60%, 12%) 100%
        );
    border: 1px solid hsl(var(--hue), 40%, 28%);
    position: relative;
    overflow: hidden;
    }

    /* Brilho sutil dentro do card */
    .hero-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(
        to bottom,
        hsl(var(--hue), 60%, 35%, .12),
        transparent
    );
    border-radius: inherit;
    }

    /* Simula barra inferior tipo título de streaming */
    .hero-card::before {
    content: '';
    position: absolute;
    bottom: 14px; left: 14px; right: 14px;
    height: 6px;
    border-radius: 4px;
    background: hsl(var(--hue), 50%, 38%, .4);
    }

    /* --- Overlay gradiente (fundo → texto legível) --- */
    .hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 30% 50%, rgba(11,11,18,.75) 0%, transparent 100%),
        linear-gradient(to right, rgba(11,11,18,.97) 0%, rgba(11,11,18,.75) 40%, rgba(11,11,18,.2) 100%),
        linear-gradient(to top,   rgba(11,11,18,1)   0%, transparent 35%);
    pointer-events: none;
    }

    /* --- Conteúdo --- */
    .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 40px;
    }

    .hero-inner {
    max-width: 600px;
    }

    /* Badge */
    .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #a89df5;
    background: rgba(168,157,245,.1);
    border: 1px solid rgba(168,157,245,.2);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 26px;
    }

    .hero-badge .dot {
    width: 6px; height: 6px;
    background: #a89df5;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px #a89df5;
    animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(.75); }
    }

    /* Título */
    .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.035em;
    color: #ffffff;
    margin-bottom: 20px;
    }

    .hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #a89df5 0%, #7c6ef0 50%, #c6f135 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }

    /* Subtítulo */
    .hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.55);
    max-width: 440px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 36px;
    }

    /* Botões de ação */
    .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    }

    .hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(91,76,219,.4);
    }

    .hero-btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(91,76,219,.5);
    }

    .hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.8);
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.12);
    transition: var(--transition);
    }

    .hero-btn-ghost:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
    border-color: rgba(255,255,255,.22);
    }

    /* --- Responsivo --- */
    @media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        align-items: flex-end;
        padding-bottom: 60px;
    }

    /* No mobile mantém apenas 4 colunas */
    .hero-grid-col:nth-child(n+5) { display: none; }

    .hero-overlay {
        background:
        linear-gradient(to top, rgba(11,11,18,1) 0%, rgba(11,11,18,.8) 50%, rgba(11,11,18,.4) 100%),
        linear-gradient(to right, rgba(11,11,18,.6) 0%, transparent 100%);
    }

    .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
    .hero p  { font-size: 1rem; }

    .hero-actions { flex-direction: column; }
    .hero-btn-primary,
    .hero-btn-ghost { justify-content: center; text-align: center; }
    }

    @media (max-width: 480px) {
    .hero-grid-col:nth-child(n+4) { display: none; }
    .hero-card { height: 130px; }
    }

    /* ============================================================
       SECTION BASE
    ============================================================ */
    .section { padding: 72px 0; }
    .section + .section { border-top: 1px solid var(--color-border); }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--color-primary);
      margin-bottom: 14px;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 22px;
      height: 2px;
      background: var(--color-primary);
      border-radius: 2px;
    }

    .section-heading {
      font-family: var(--font-head);
      font-size: clamp(1.6rem, 3.2vw, 2.2rem);
      font-weight: 700;
      letter-spacing: -.025em;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .section-sub {
      font-size: 1rem;
      color: var(--color-muted);
      max-width: 480px;
      margin-bottom: 44px;
      font-weight: 400;
    }

    /* grid for content + video */
    .section-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
    }

    @media (max-width: 768px) {
      .section-grid { grid-template-columns: 1fr; }
    }

    /* ============================================================
       VIDEO EMBED
    ============================================================ */
    .video-wrap {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: var(--color-text);
      aspect-ratio: 16/9;
      box-shadow: var(--shadow-elevated);
    }

    .video-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    /* ============================================================
       ACCORDION / FAQ
    ============================================================ */
    .accordion { display: flex; flex-direction: column; gap: 10px; }

    .accordion-item {
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
    }

    .accordion-item:hover {
      border-color: rgba(91,76,219,.3);
      box-shadow: 0 0 0 3px rgba(91,76,219,.06);
    }

    .accordion-item.is-open {
      border-color: rgba(91,76,219,.35);
      box-shadow: 0 0 0 3px rgba(91,76,219,.07);
    }

    .accordion-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 22px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: var(--font-body);
      font-size: .96rem;
      font-weight: 500;
      color: var(--color-text);
      transition: var(--transition);
    }

    .accordion-trigger:hover { color: var(--color-primary); }

    .accordion-icon {
      flex-shrink: 0;
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 1.5px solid var(--color-border);
      display: flex; align-items: center; justify-content: center;
      transition: var(--transition);
      color: var(--color-muted);
    }

    .accordion-item.is-open .accordion-icon {
      background: var(--color-primary);
      border-color: var(--color-primary);
      color: #fff;
      transform: rotate(45deg);
    }

    .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .2s ease;
    }

    .accordion-body.is-open { max-height: 500px; }

    .accordion-body-inner {
      padding: 0 22px 20px;
      font-size: .92rem;
      color: var(--color-muted);
      line-height: 1.75;
    }

    /* ============================================================
       SECTION: TRAVOU
    ============================================================ */
    .section-travou { background: var(--color-surface-2); }

    .steps-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    /* ============================================================
       SECTION: CONTATO
    ============================================================ */
    .section-contact {
      background: var(--color-text);
      color: #fff;
      border-top: none !important;
    }

    .section-contact .section-label { color: var(--color-accent); }
    .section-contact .section-label::before { background: var(--color-accent); }
    .section-contact .section-heading { color: #fff; }
    .section-contact .section-sub { color: rgba(255,255,255,.55); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: center;
    }

    @media (max-width: 768px) {
      .contact-grid { grid-template-columns: 1fr; }
    }

    .contact-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: var(--transition);
    }

    .contact-card:hover {
      background: rgba(255,255,255,.09);
      transform: translateY(-2px);
      box-shadow: 0 12px 48px rgba(0,0,0,.3);
    }

    .wa-icon-wrap {
      width: 54px; height: 54px;
      background: var(--color-wa);
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 20px rgba(37,211,102,.35);
    }

    .contact-card h3 {
      font-family: var(--font-head);
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: -.02em;
    }

    .contact-card p {
      font-size: .9rem;
      color: rgba(255,255,255,.55);
      line-height: 1.7;
    }

    .btn-wa {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 14px 24px;
      background: var(--color-wa);
      color: #fff;
      font-family: var(--font-body);
      font-size: .9rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      text-decoration: none;
      transition: var(--transition);
      align-self: flex-start;
      box-shadow: 0 4px 18px rgba(37,211,102,.3);
    }

    .btn-wa:hover {
      background: #1db954;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(37,211,102,.4);
    }

    /* accent blob inside contact section */
    .contact-visual {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .contact-visual .big-text {
      font-family: var(--font-head);
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 700;
      letter-spacing: -.04em;
      line-height: 1.05;
      color: rgba(255,255,255,.08);
      user-select: none;
    }

    .contact-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: rgba(198,241,53,.1);
      border: 1px solid rgba(198,241,53,.25);
      border-radius: 100px;
      color: var(--color-accent);
      font-size: .8rem;
      font-weight: 600;
    }

    /* ============================================================
       STATS BAR
    ============================================================ */
    .stats-bar {
      display: flex;
      gap: 0;
      background: var(--color-surface);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--color-border);
      margin: 48px 0;
    }

    .stat-item {
      flex: 1;
      padding: 28px 24px;
      text-align: center;
      border-right: 1px solid var(--color-border);
    }

    .stat-item:last-child { border-right: none; }

    .stat-number {
      font-family: var(--font-head);
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -.03em;
      color: var(--color-text);
      display: block;
    }

    .stat-label {
      font-size: .78rem;
      color: var(--color-muted);
      margin-top: 4px;
      font-weight: 400;
    }

    @media (max-width: 480px) {
      .stats-bar { flex-direction: column; }
      .stat-item { border-right: none; border-bottom: 1px solid var(--color-border); }
      .stat-item:last-child { border-bottom: none; }
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      padding: 40px 0;
      background: var(--color-text);
      border-top: 1px solid rgba(255,255,255,.08);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-copy {
      font-size: .82rem;
      color: rgba(255,255,255,.35);
    }

    .footer-links {
      display: flex;
      gap: 6px;
      list-style: none;
    }

    .footer-links a {
      font-size: .82rem;
      color: rgba(255,255,255,.35);
      text-decoration: none;
      padding: 5px 10px;
      border-radius: 6px;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: rgba(255,255,255,.8);
      background: rgba(255,255,255,.07);
    }

    /* ============================================================
       SCROLL-IN ANIMATION
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: none;
    }

    /* staggered children */
    .reveal-stagger > * {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .5s ease, transform .5s ease;
    }

    .reveal-stagger.is-visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:.05s; }
    .reveal-stagger.is-visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.12s; }
    .reveal-stagger.is-visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.19s; }
    .reveal-stagger.is-visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.26s; }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 640px) {
      .hero { padding: 72px 0 56px; }
      .section { padding: 52px 0; }
      .nav-links { display: none; }
      .nav-links.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px; left: 0; right: 0;
        background: var(--color-bg);
        border-bottom: 1px solid var(--color-border);
        padding: 12px 24px 20px;
        gap: 4px;
      }
      .nav-toggle { display: flex; }
    }