/* ============================================================
       BRAND PALETTE (MIV)
       ============================================================ */
    :root {
      --black: #0A0A0A;
      --red: #E24B4A;
      --offwhite: #F5F5F3;
      --graphite: #2C2C2A;
      --gray: #888780;
      --grayDark: #3A3A37;
      --grayDim: #5A5A57;
      --white: #FFFFFF;
      --lightBorder: #DCDCD8;
      --lightDivider: #E2E2DE;

      --font-display: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      --font-mono: 'Courier New', Courier, monospace;

      --container: 1200px;
      --section-pad: 6rem;
      --topbar-h: 60px;
    }

    /* RESET + BASE */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: var(--topbar-h);
      text-size-adjust: 100%;
      -webkit-text-size-adjust: 100%;
    }
    body {
      font-family: var(--font-body);
      color: var(--offwhite);
      background: var(--black);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }
    img, svg { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
    ul { list-style: none; }

    /* FOCUS STATES (acessibilidade UX) */
    :focus { outline: none; }
    :focus-visible {
      outline: 2px solid var(--red);
      outline-offset: 3px;
      border-radius: 2px;
    }

    /* SKIP TO CONTENT (acessibilidade) */
    .skip-link {
      position: absolute; top: -40px; left: 0;
      background: var(--red); color: var(--white);
      padding: 0.5rem 1rem; z-index: 999;
      font-family: var(--font-mono); font-size: 0.85rem; font-weight: 700;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 0; }

    /* PREFERS REDUCED MOTION */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* LAYOUT */
    .container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
    .section { padding: var(--section-pad) 0; }
    .section--dark { background: var(--black); color: var(--offwhite); }
    .section--light { background: var(--offwhite); color: var(--black); }

    /* ============================================================
       TOPBAR FIXED
       ============================================================ */
    .topbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(10, 10, 10, 0.88);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      height: var(--topbar-h);
    }
    .topbar__inner {
      display: flex; justify-content: space-between; align-items: center;
      max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; height: 100%;
    }
    .topbar__rec {
      display: flex; align-items: center; gap: 0.5rem;
      font-family: var(--font-mono); font-size: 0.75rem;
      color: var(--red); font-weight: 700; letter-spacing: 0.15em;
    }
    .rec-dot {
      width: 8px; height: 8px; background: var(--red); border-radius: 50%;
      animation: blink 1.8s infinite;
    }
    @keyframes blink { 0%, 60% { opacity: 1; } 80%, 100% { opacity: 0.3; } }

    .topbar__nav { display: flex; align-items: center; gap: 2rem; }
    .topbar__nav a.nav-link {
      font-family: var(--font-mono); font-size: 0.75rem; color: var(--gray);
      letter-spacing: 0.15em; transition: color 0.2s; padding: 0.5rem 0;
      text-transform: uppercase;
    }
    .topbar__nav a.nav-link:hover { color: var(--offwhite); }
    .topbar__cta {
      font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.15em; color: var(--white);
      background: var(--red); padding: 0.65rem 1.1rem;
      transition: background 0.2s; min-height: 38px;
      display: inline-flex; align-items: center;
    }
    .topbar__cta:hover { background: #C53D3C; }

    .mobile-toggle {
      display: none; padding: 0.5rem; min-width: 44px; min-height: 44px;
      align-items: center; justify-content: center;
    }
    .mobile-toggle span {
      display: block; width: 22px; height: 2px; background: var(--offwhite);
      position: relative;
    }
    .mobile-toggle span::before,
    .mobile-toggle span::after {
      content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--offwhite);
      transition: transform 0.3s;
    }
    .mobile-toggle span::before { top: -7px; }
    .mobile-toggle span::after { top: 7px; }
    .mobile-toggle[aria-expanded="true"] span { background: transparent; }
    .mobile-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
    .mobile-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

    @media (max-width: 860px) {
      .mobile-toggle { display: flex; }
      .topbar__nav {
        position: fixed; top: var(--topbar-h); left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--black); padding: 1rem 1.5rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        transform: translateY(-130%); transition: transform 0.3s ease;
        max-height: calc(100vh - var(--topbar-h)); overflow-y: auto;
      }
      .topbar__nav.open { transform: translateY(0); }
      .topbar__nav a.nav-link {
        padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 0.85rem;
      }
      .topbar__cta { margin-top: 1rem; justify-content: center; padding: 1rem; font-size: 0.8rem; }
    }

    /* ============================================================
       WHATSAPP FLOATING
       ============================================================ */
    .whatsapp-float {
      position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
      width: 60px; height: 60px; background: #25D366; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5); }
    .whatsapp-float svg { width: 30px; height: 30px; fill: white; }
    .whatsapp-float::before {
      content: ''; position: absolute; inset: 0; border-radius: 50%;
      background: #25D366; opacity: 0.4; z-index: -1;
      animation: pulse 2.4s ease-out infinite;
    }
    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.4; }
      100% { transform: scale(1.6); opacity: 0; }
    }

    /* ============================================================
       HERO
       ============================================================ */
    .hero {
      min-height: 100vh; display: flex; flex-direction: column;
      justify-content: center; align-items: center; text-align: center;
      padding: 7rem 1.5rem 4rem;
      border-top: 4px solid var(--red);
      border-bottom: 4px solid var(--red);
      background: radial-gradient(ellipse at center, #161616 0%, var(--black) 70%);
      position: relative;
    }
    .hero__eyebrow {
      font-family: var(--font-mono); font-size: 0.75rem; color: var(--gray);
      letter-spacing: 0.4em; margin-bottom: 1.5rem;
    }
    .hero__logo {
      font-family: var(--font-display); font-size: clamp(2.4rem, 8vw, 5.5rem);
      font-weight: 700; letter-spacing: 0.05em; line-height: 1;
      display: inline-flex; align-items: center; gap: 1rem;
      color: var(--offwhite); margin-bottom: 1rem;
    }
    .hero__bracket {
      font-weight: 300; color: var(--offwhite); font-size: 1.2em; line-height: 0.85;
    }
    .hero__subtitle {
      font-family: var(--font-body); font-size: 0.85rem; color: var(--gray);
      letter-spacing: 0.4em; margin-bottom: 3rem;
    }
    .hero__manifesto {
      font-size: clamp(1.1rem, 2vw, 1.5rem); font-style: italic;
      color: var(--offwhite); max-width: 720px; line-height: 1.5;
      margin-bottom: 2.5rem; font-weight: 300;
    }
    .hero__manifesto strong { font-weight: 600; font-style: normal; color: var(--offwhite); }

    /* CTA buttons */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
      font-family: var(--font-mono); font-weight: 700; letter-spacing: 0.15em;
      padding: 1rem 2rem; transition: background 0.2s, transform 0.2s, color 0.2s;
      min-height: 48px; cursor: pointer; text-transform: uppercase;
    }
    .btn--primary { background: var(--red); color: var(--white); font-size: 0.95rem; }
    .btn--primary:hover { background: #C53D3C; transform: translateY(-2px); }
    .btn--ghost { background: transparent; color: var(--offwhite); border: 1px solid var(--lightBorder); font-size: 0.9rem; }
    .btn--ghost:hover { background: var(--red); border-color: var(--red); }
    .btn--on-light { background: var(--black); color: var(--white); font-size: 0.9rem; }
    .btn--on-light:hover { background: var(--red); }
    .btn__icon { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

    .hero__scroll {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      font-family: var(--font-mono); font-size: 0.7rem; color: var(--grayDim);
      letter-spacing: 0.3em; animation: bob 2.4s ease-in-out infinite;
    }
    @keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

    /* ============================================================
       PARA QUEM ATENDEMOS (substitui trust bar)
       ============================================================ */
    .public {
      background: var(--black);
      padding: var(--section-pad) 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .public__grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem; margin-top: 2.5rem;
    }
    .public-block {
      padding: 2.5rem 2rem;
      border: 1px solid rgba(255,255,255,0.06);
      background: transparent;
      transition: border-color 0.3s, background 0.3s, transform 0.3s;
      min-height: 240px;
    }
    .public-block:hover, .public-block:focus-within {
      border-color: var(--red);
      background: var(--graphite);
      transform: translateY(-3px);
    }
    .public-block__bracket {
      font-family: var(--font-display); font-size: 1.6rem; color: var(--red);
      font-weight: 300; display: block; margin-bottom: 1.5rem; letter-spacing: 0.1em;
    }
    .public-block__name {
      font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
      color: var(--offwhite); margin-bottom: 0.9rem; letter-spacing: 0.01em; line-height: 1.3;
    }
    .public-block__desc {
      font-size: 0.95rem; color: var(--gray); line-height: 1.6;
    }
    @media (max-width: 900px) { .public__grid { grid-template-columns: 1fr; } }

    /* ============================================================
       MARQUEE (esteira cinematográfica)
       ============================================================ */
    .marquee {
      background: var(--black);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 1.5rem 0; overflow: hidden; white-space: nowrap;
    }
    .marquee__track {
      display: inline-flex; animation: marquee-scroll 50s linear infinite;
      font-family: var(--font-mono); font-size: 0.85rem;
      color: var(--gray); letter-spacing: 0.2em; will-change: transform;
    }
    .marquee__group {
      display: inline-flex; align-items: center; gap: 0;
      padding-right: 0;
    }
    .marquee__group span { flex-shrink: 0; padding: 0 1rem; }
    .marquee__group .dot { color: var(--red); padding: 0; }
    @keyframes marquee-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .marquee__track { animation: none; }
    }

    /* SCROLL PROGRESS BAR (REC theme) */
    .scroll-progress {
      position: fixed; top: 0; left: 0; height: 3px; width: 0;
      background: var(--red); z-index: 200;
      transition: width 0.1s ease-out;
    }

    /* ============================================================
       PORTFÓLIO
       ============================================================ */
    .portfolio__grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
      margin-top: 1rem;
    }
    .case {
      background: var(--graphite);
      border: 1px solid rgba(255,255,255,0.05);
      overflow: hidden; cursor: pointer; display: flex; flex-direction: column;
      transition: transform 0.35s ease, border-color 0.35s ease;
    }
    .case:hover, .case:focus-within {
      transform: translateY(-4px); border-color: var(--red);
    }
    .case__media {
      aspect-ratio: 16/9; background: var(--black);
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .case__media::before {
      content: '● REC'; position: absolute; top: 0.8rem; left: 0.8rem;
      font-family: var(--font-mono); font-size: 0.65rem; color: var(--red);
      letter-spacing: 0.2em; font-weight: 700; z-index: 2;
    }
    .case__media::after {
      content: '00:00:09:00'; position: absolute; top: 0.8rem; right: 0.8rem;
      font-family: var(--font-mono); font-size: 0.65rem; color: var(--grayDim);
      letter-spacing: 0.1em; z-index: 2;
    }
    .case__placeholder {
      font-family: var(--font-mono); font-size: 0.75rem; color: var(--grayDim);
      letter-spacing: 0.25em; text-align: center; padding: 0 2rem;
      text-transform: uppercase;
    }
    .case__placeholder span {
      display: block; font-size: 2.5rem; color: var(--grayDark);
      font-family: var(--font-display); font-weight: 300; margin-bottom: 0.6rem;
      letter-spacing: 0.1em;
    }
    .case__media img, .case__media video {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 0.5s ease;
    }
    .case:hover .case__media img,
    .case:hover .case__media video {
      transform: scale(1.04);
    }
    .case__body {
      padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column;
      gap: 0.4rem; flex: 1;
    }
    .case__category {
      font-family: var(--font-mono); font-size: 0.7rem; color: var(--red);
      letter-spacing: 0.2em; font-weight: 700;
    }
    .case__client {
      font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
      color: var(--offwhite); line-height: 1.3;
    }
    .case__desc {
      font-size: 0.85rem; color: var(--gray); line-height: 1.5;
    }
    .portfolio__cta {
      display: flex; justify-content: center; margin-top: 3rem;
    }
    @media (max-width: 900px) {
      .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .portfolio__grid { grid-template-columns: 1fr; }
    }

    /* ============================================================
       SECTION HEADERS
       ============================================================ */
    .section-label {
      display: inline-flex; align-items: center; gap: 0.7rem;
      font-family: var(--font-mono); font-size: 0.75rem;
      letter-spacing: 0.25em; margin-bottom: 1.5rem; text-transform: uppercase;
    }
    .section--dark .section-label { color: var(--gray); }
    .section--light .section-label { color: var(--grayDark); }
    .section-label::before {
      content: ''; display: block; width: 30px; height: 2px; background: var(--red);
    }
    .section-title {
      font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700; letter-spacing: -0.01em; line-height: 1.15;
      margin-bottom: 1rem; max-width: 820px;
    }
    .section-lead {
      font-size: clamp(1rem, 1.5vw, 1.15rem); max-width: 720px;
      margin-bottom: 3.5rem; line-height: 1.55;
    }
    .section--dark .section-lead { color: var(--gray); }
    .section--light .section-lead { color: var(--grayDark); }

    /* ============================================================
       SOBRE
       ============================================================ */
    .sobre__grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }
    .sobre__text p { font-size: 1.05rem; line-height: 1.65; margin-bottom: 1.2rem; color: var(--grayDark); }
    .sobre__text p.lead { color: var(--black); font-weight: 600; }
    .sobre__visual {
      aspect-ratio: 4/5; background: var(--black);
      border: 1px solid var(--lightBorder);
      display: flex; align-items: center; justify-content: center;
      color: var(--grayDim); font-family: var(--font-mono); font-size: 0.75rem;
      letter-spacing: 0.2em; text-align: center; padding: 2rem;
      position: relative; overflow: hidden;
    }
    .sobre__visual::before {
      content: '● REC'; position: absolute; top: 1rem; left: 1rem;
      font-family: var(--font-mono); font-size: 0.7rem; color: var(--red);
      letter-spacing: 0.2em; font-weight: 700;
    }
    .sobre__visual::after {
      content: '00:00:09:00'; position: absolute; top: 1rem; right: 1rem;
      font-family: var(--font-mono); font-size: 0.7rem; color: var(--grayDim);
    }
    .sobre__visual-content {
      font-family: var(--font-display); font-size: 4rem; color: var(--grayDark);
      font-weight: 300; letter-spacing: 0.1em;
    }
    @media (max-width: 768px) {
      .sobre__grid { grid-template-columns: 1fr; gap: 2rem; }
    }

    /* ============================================================
       SERVIÇOS
       ============================================================ */
    .servicos__grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    }
    .servico {
      background: var(--graphite); padding: 2rem 1.75rem;
      border: 1px solid transparent; transition: border-color 0.2s, transform 0.2s;
      min-height: 200px;
    }
    .servico:hover, .servico:focus-within {
      border-color: var(--red); transform: translateY(-3px);
    }
    .servico__icon {
      font-family: var(--font-mono); font-size: 1.2rem; color: var(--red);
      margin-bottom: 1rem; letter-spacing: 0.05em; font-weight: 700;
    }
    .servico__title {
      font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
      color: var(--offwhite); margin-bottom: 0.6rem; line-height: 1.3;
    }
    .servico__desc {
      font-size: 0.9rem; color: var(--gray); line-height: 1.55;
    }
    @media (max-width: 900px) { .servicos__grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .servicos__grid { grid-template-columns: 1fr; } }

    /* ============================================================
       PLANOS DE CONTEÚDO (seletor de duração + cards)
       ============================================================ */

    /* --- Passo 1: seletor de duração --- */
    .dur { margin-bottom: 2.5rem; }
    .dur__label {
      font-family: var(--font-mono); font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.18em; color: var(--red);
      text-transform: uppercase; margin-bottom: 1rem;
    }
    .dur__label--step2 { margin-bottom: 1.25rem; }

    .dur__switch {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 0.4rem; padding: 0.4rem;
      background: var(--white); border: 1px solid var(--lightBorder);
      border-radius: 12px; max-width: 620px;
    }
    .dur__opt {
      display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
      padding: 0.95rem 0.5rem; border-radius: 8px;
      background: transparent; color: var(--grayDark);
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .dur__opt:hover { background: #EFEFEC; }
    .dur__opt.is-active {
      background: var(--black); color: var(--white);
    }
    .dur__opt.is-active:hover { background: var(--black); }
    .dur__weeks {
      font-family: var(--font-mono); font-size: 0.95rem; font-weight: 700;
      letter-spacing: 0.08em;
    }
    .dur__videos { font-size: 0.8rem; opacity: 0.65; }
    .dur__opt.is-active .dur__videos { opacity: 0.8; }

    /* --- Passo 2: cards de plano --- */
    /* --- Destaque: otimização de agenda --- */
    .agenda {
      display: flex; align-items: center; gap: 1.25rem;
      background: var(--black); color: var(--offwhite);
      border-radius: 12px; padding: 1.5rem 1.75rem;
      margin-bottom: 0.85rem;
    }
    .agenda__note {
      display: flex; gap: 0.35rem;
      font-size: 0.82rem; color: var(--grayDim); line-height: 1.5;
      margin-bottom: 2.75rem;
    }
    .agenda__note span { color: var(--red); font-weight: 700; }
    .agenda__icon {
      flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: rgba(226,75,74,0.16); color: var(--red);
    }
    .agenda__text { flex: 1; min-width: 0; }
    .agenda__head {
      font-size: 1.12rem; font-weight: 700; line-height: 1.35;
      color: var(--white); margin-bottom: 0.25rem;
    }
    .agenda__head strong { color: var(--red); font-weight: 700; }
    .agenda__sub { font-size: 0.9rem; line-height: 1.5; color: var(--gray); }
    .agenda__metric {
      flex-shrink: 0; text-align: center;
      padding-left: 1.25rem; border-left: 1px solid var(--grayDark);
    }
    .agenda__metric strong {
      display: block; font-family: var(--font-mono);
      font-size: 2rem; font-weight: 400; color: var(--white); line-height: 1;
    }
    .agenda__metric small {
      display: block; margin-top: 0.35rem;
      font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.14em; color: var(--gray); line-height: 1.4;
    }
    @media (max-width: 860px) {
      .agenda {
        flex-wrap: wrap; gap: 1rem; padding: 1.35rem 1.25rem;
      }
      .agenda__text { flex: 1 1 100%; order: 3; }
      .agenda__head { font-size: 1.02rem; }
      .agenda__metric {
        padding-left: 0; border-left: none; text-align: left;
        margin-left: auto;
      }
      .agenda__metric { display: flex; align-items: baseline; gap: 0.5rem; }
      .agenda__metric strong { font-size: 1.75rem; }
      .agenda__metric small { margin-top: 0; }
    }

    .pcards {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem; margin-bottom: 4rem; align-items: stretch;
    }
    .pcard {
      position: relative;
      background: var(--white); border: 1px solid var(--lightBorder);
      border-radius: 14px; padding: 2.5rem 2rem 2rem;
      display: flex; flex-direction: column;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .pcard:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
    .pcard--dark {
      background: var(--black); border-color: var(--black); color: var(--offwhite);
    }
    .pcard--dark:hover { box-shadow: 0 16px 44px rgba(226,75,74,0.22); }

    .pcard__badge {
      position: absolute; top: 0; left: 2rem; transform: translateY(-50%);
      display: inline-flex; align-items: center; gap: 0.45rem;
      background: var(--red); color: var(--white);
      padding: 0.4rem 0.85rem; border-radius: 100px;
      font-family: var(--font-mono); font-size: 0.64rem; font-weight: 700;
      letter-spacing: 0.16em; white-space: nowrap;
    }
    .pcard__badge--ia { background: var(--red); }
    .pcard__badge--ia strong {
      display: inline-flex; align-items: center; justify-content: center;
      width: 20px; height: 20px; border-radius: 5px;
      background: rgba(255,255,255,0.22); font-size: 0.62rem;
    }

    .pcard__name {
      font-family: var(--font-mono); font-size: 1.55rem; font-weight: 700;
      letter-spacing: 0.16em; color: var(--red); margin-bottom: 0.5rem;
    }
    .pcard--dark .pcard__name { color: var(--white); }
    .pcard__tagline {
      font-size: 0.95rem; line-height: 1.5; color: var(--grayDark);
      margin-bottom: 1.75rem; min-height: 2.9em;
    }
    .pcard--dark .pcard__tagline { color: var(--gray); }

    .pcard__pricing {
      padding: 1.5rem 0; margin-bottom: 1.75rem;
      border-top: 1px solid var(--lightDivider);
      border-bottom: 1px solid var(--lightDivider);
    }
    .pcard--dark .pcard__pricing { border-color: var(--grayDark); }
    .pcard__price {
      display: flex; align-items: baseline; gap: 0.4rem;
      font-family: var(--font-mono); font-size: 2.9rem; font-weight: 400;
      letter-spacing: 0.04em; color: var(--black); line-height: 1;
    }
    .pcard--dark .pcard__price { color: var(--white); }
    .pcard__currency { font-size: 1.15rem; color: var(--grayDim); letter-spacing: 0; }
    .pcard--dark .pcard__currency { color: var(--gray); }
    .pcard__price [data-price] {
      display: inline-block;
      transition: opacity 0.18s ease, transform 0.18s ease;
    }
    .pcard.is-updating .pcard__price [data-price],
    .pcard.is-updating .pcard__unit strong {
      opacity: 0; transform: translateY(-6px);
    }
    .pcard__unit {
      font-size: 0.9rem; color: var(--grayDim); margin-top: 0.7rem;
    }
    .pcard--dark .pcard__unit { color: var(--gray); }
    .pcard__unit strong {
      color: var(--black); font-weight: 700;
      display: inline-block; transition: opacity 0.18s ease, transform 0.18s ease;
    }
    .pcard--dark .pcard__unit strong { color: var(--offwhite); }
    .pcard__save[hidden] { display: none; }
    .pcard__save {
      display: inline-flex; align-items: center; gap: 0.4rem;
      margin-top: 0.85rem; padding: 0.35rem 0.7rem; border-radius: 100px;
      background: #E9F4EC; color: #1F7A3F;
      font-size: 0.78rem; font-weight: 700;
    }
    .pcard--dark .pcard__save { background: rgba(93,199,132,0.16); color: #6FD495; }

    .pcard__features-label {
      font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.18em; color: var(--red); margin-bottom: 0.9rem;
    }
    .pcard--dark .pcard__features-label { color: var(--red); }
    .pcard__features { flex: 1; margin-bottom: 2rem; }
    .pcard__features li {
      display: flex; align-items: flex-start; gap: 0.65rem;
      padding: 0.4rem 0; font-size: 0.95rem; color: var(--grayDark);
    }
    .pcard--dark .pcard__features li { color: var(--offwhite); }
    .pcard__features li::before {
      content: '✓';
      flex-shrink: 0; width: 18px; height: 18px; margin-top: 0.15rem;
      border-radius: 50%; border: 1.5px solid currentColor;
      display: flex; align-items: center; justify-content: center;
      font-size: 9px; font-weight: 700; line-height: 1; color: var(--red);
    }
    .pcard__features--plus li::before {
      content: '+'; font-size: 12px;
      background: var(--red); border-color: var(--red); color: var(--white);
    }
    .pcard__features--plus li { flex-direction: row; }
    .pcard__features--plus strong { font-weight: 700; }
    .pcard__features--plus small {
      display: block; font-size: 0.8rem; color: var(--gray);
      margin-top: 0.15rem; font-weight: 400;
    }
    .pcard__cta { width: 100%; }

    @media (max-width: 860px) {
      .pcards { grid-template-columns: 1fr; gap: 2.25rem; }
      .pcard { padding: 2.25rem 1.5rem 1.75rem; }
      .pcard__tagline { min-height: 0; }
      .pcard__price { font-size: 2.4rem; }
      .dur__switch { max-width: none; }
      .dur__weeks { font-size: 0.82rem; }
      .dur__videos { font-size: 0.72rem; }
      .dur__opt { padding: 0.8rem 0.3rem; }
      .pcard__badge { left: 1.5rem; }
    }

    /* ============================================================
       SERVIÇOS COMPLEMENTARES
       ============================================================ */
    .servicos-comp { border-top: 1px solid var(--lightBorder); padding-top: 3rem; }
    .servicos-comp__title {
      font-family: var(--font-mono); font-size: 1.05rem; font-weight: 700;
      letter-spacing: 0.22em; color: var(--black);
      text-align: center; margin-bottom: 2.5rem;
    }
    .servicos-comp__grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr;
      align-items: center; gap: 1rem;
      margin-bottom: 2.5rem;
    }
    .servicos-comp__item {
      background: var(--white); border: 1px solid var(--lightBorder);
      border-radius: 10px; padding: 1.75rem 1.5rem;
      align-self: stretch;
    }
    .servicos-comp__item:nth-child(1),
    .servicos-comp__item:nth-child(5) { background: #FDF3F3; border-color: #F3DEDE; }
    .servicos-comp__icon {
      width: 54px; height: 54px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: var(--red); margin-bottom: 1.1rem;
    }
    .servicos-comp__item:nth-child(3) .servicos-comp__icon { background: var(--black); }
    .servicos-comp__name {
      font-family: var(--font-mono); font-size: 1rem; font-weight: 700;
      letter-spacing: 0.1em; color: var(--red); line-height: 1.5;
      margin-bottom: 0.7rem;
    }
    .servicos-comp__item:nth-child(3) .servicos-comp__name { color: var(--black); }
    .servicos-comp__desc {
      font-size: 0.95rem; color: var(--grayDark); line-height: 1.5;
      margin-bottom: 0.9rem;
    }
    .servicos-comp__price {
      font-size: 1.15rem; font-weight: 700; color: var(--red);
      padding-bottom: 1rem; margin-bottom: 1rem;
      border-bottom: 1px solid var(--lightDivider);
    }
    .servicos-comp__list li {
      display: flex; align-items: flex-start; gap: 0.55rem;
      padding: 0.32rem 0; font-size: 0.9rem; color: var(--grayDark);
    }
    .servicos-comp__list li::before {
      content: '✓'; color: var(--red); font-weight: 700;
      flex-shrink: 0; font-size: 0.85em; line-height: 1.6;
    }
    .servicos-comp__plans-label {
      font-size: 0.95rem; font-weight: 700; color: var(--black);
      text-align: center; padding-top: 1rem;
      border-top: 1px solid var(--lightDivider); margin-bottom: 0.8rem;
    }
    .servicos-comp__plans {
      display: flex; align-items: center; justify-content: center; gap: 0.6rem;
      font-size: 0.9rem; color: var(--grayDark); margin-bottom: 0.9rem;
    }
    .servicos-comp__plan-tag {
      font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.14em; padding: 0.4rem 0.7rem;
      border: 1px solid var(--red); border-radius: 5px; color: var(--red);
    }
    .servicos-comp__plans .servicos-comp__plan-tag:last-child {
      border-color: var(--grayDark); color: var(--black);
    }
    .servicos-comp__plans-note {
      font-size: 0.88rem; color: var(--grayDark); line-height: 1.5;
    }
    .servicos-comp__plus {
      display: flex; align-items: center; justify-content: center;
      width: 34px; height: 34px; border-radius: 50%;
      background: var(--black); color: var(--white);
      font-size: 1.2rem; font-weight: 700; line-height: 1;
    }

    .servicos-comp__note {
      display: flex; align-items: flex-start; gap: 0.9rem;
      background: #F0F0EE; border-radius: 8px; padding: 1.25rem 1.5rem;
      color: var(--grayDark); margin-bottom: 1.5rem;
    }
    .servicos-comp__note svg { flex-shrink: 0; margin-top: 0.15rem; }
    .servicos-comp__note p { font-size: 0.9rem; line-height: 1.6; }
    .servicos-comp__note strong { color: var(--black); }

    .servicos-comp__missao {
      display: flex; align-items: center; gap: 0.6rem;
      font-size: 0.9rem; color: var(--grayDark);
    }
    .servicos-comp__missao span { color: var(--red); font-size: 1rem; }
    .servicos-comp__missao strong {
      font-family: var(--font-mono); letter-spacing: 0.1em; color: var(--black);
    }

    @media (max-width: 900px) {
      .servicos-comp__grid { grid-template-columns: 1fr; }
      .servicos-comp__plus { margin: 0 auto; }
    }

    /* ============================================================
       DIFERENCIAIS
       ============================================================ */
    .diferenciais__grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    }
    .dif {
      background: var(--graphite); padding: 2rem 1.5rem;
      border: 1px solid rgba(255,255,255,0.04); transition: border-color 0.25s, transform 0.25s;
      min-height: 240px;
    }
    .dif:hover { border-color: var(--red); transform: translateY(-3px); }
    .dif__mark {
      font-family: var(--font-display); font-size: 1.4rem;
      color: var(--red); font-weight: 300; margin-bottom: 1rem;
    }
    .dif__stat {
      font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
      color: var(--offwhite); line-height: 1.2; margin-bottom: 0.6rem;
    }
    .dif__label {
      font-family: var(--font-mono); font-size: 0.7rem; color: var(--red);
      letter-spacing: 0.15em; margin-bottom: 1rem; display: block; font-weight: 700;
    }
    .dif__desc {
      font-size: 0.88rem; color: var(--gray); line-height: 1.55;
    }
    @media (max-width: 900px) { .diferenciais__grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .diferenciais__grid { grid-template-columns: 1fr; } }

    /* ============================================================
       PROCESSO TIMELINE
       ============================================================ */
    .processo__timeline {
      display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
      position: relative; margin-top: 2rem;
    }
    .processo__timeline::before {
      content: ''; position: absolute; top: 1.5rem; left: 8%; right: 8%;
      height: 1px; background: var(--lightBorder); z-index: 0;
    }
    .step { text-align: center; position: relative; z-index: 1; }
    .step__num {
      width: 3rem; height: 3rem; border-radius: 50%;
      background: var(--offwhite); border: 2px solid var(--red);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-mono); font-weight: 700; color: var(--red);
      margin: 0 auto 1rem; font-size: 0.95rem;
    }
    .step__title {
      font-family: var(--font-display); font-size: 1rem; font-weight: 700;
      color: var(--black); margin-bottom: 0.5rem;
    }
    .step__desc {
      font-size: 0.88rem; color: var(--grayDark); line-height: 1.5; padding: 0 0.4rem;
    }
    @media (max-width: 900px) {
      .processo__timeline { grid-template-columns: 1fr 1fr; }
      .processo__timeline::before { display: none; }
    }
    @media (max-width: 500px) { .processo__timeline { grid-template-columns: 1fr; } }

    /* ============================================================
       DEPOIMENTOS
       ============================================================ */
    .depoimentos__grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    }
    .depoimento {
      background: var(--graphite); padding: 2.5rem 2rem;
      border: 1px solid rgba(255,255,255,0.04);
      display: flex; flex-direction: column;
      transition: border-color 0.25s, transform 0.25s;
    }
    .depoimento:hover { border-color: var(--red); transform: translateY(-3px); }
    .depoimento__quote {
      font-family: var(--font-display); font-size: 3rem; color: var(--red);
      line-height: 0.6; margin-bottom: 1.5rem; font-weight: 700;
    }
    .depoimento__body {
      font-size: 1rem; color: var(--offwhite); line-height: 1.65;
      font-style: italic; margin-bottom: 1.5rem; flex: 1;
    }
    .depoimento__divider {
      width: 30px; height: 2px; background: var(--red); margin-bottom: 1rem;
    }
    .depoimento__name {
      font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
      color: var(--offwhite); margin-bottom: 0.3rem;
    }
    .depoimento__role {
      font-family: var(--font-mono); font-size: 0.75rem; color: var(--gray);
      letter-spacing: 0.1em;
    }
    @media (max-width: 900px) { .depoimentos__grid { grid-template-columns: 1fr; } }

    /* ============================================================
       CTA FINAL
       ============================================================ */
    .cta-final {
      background: var(--black); border-top: 4px solid var(--red);
      border-bottom: 4px solid var(--red); text-align: center;
      padding: 6rem 1.5rem;
    }
    .cta-final__bracket {
      font-family: var(--font-display); font-size: 4rem; color: var(--red);
      font-weight: 300; letter-spacing: 0.2em; margin-bottom: 1rem;
    }
    .cta-final__title {
      font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700; color: var(--offwhite); line-height: 1.1; margin-bottom: 1rem;
    }
    .cta-final__sub {
      font-family: var(--font-body); font-size: 1.15rem; color: var(--gray);
      font-style: italic; margin-bottom: 2.5rem;
    }

    /* ============================================================
       FOOTER
       ============================================================ */
    footer { background: var(--black); color: var(--gray); padding: 4rem 0 2rem; }
    .footer__top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem;
    }
    .footer__brand .logo {
      font-family: var(--font-display); font-size: 1.5rem;
      color: var(--offwhite); font-weight: 700; letter-spacing: 0.05em;
      display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem;
    }
    .footer__brand .bracket { font-weight: 300; color: var(--offwhite); }
    .footer__brand p { color: var(--gray); font-size: 0.9rem; max-width: 280px; line-height: 1.6; }
    .footer__col h6 {
      font-family: var(--font-mono); font-size: 0.7rem; color: var(--red);
      letter-spacing: 0.2em; margin-bottom: 1.2rem; font-weight: 700;
    }
    .footer__col ul li { margin-bottom: 0.6rem; font-size: 0.9rem; }
    .footer__col ul li a { color: var(--offwhite); transition: color 0.2s; }
    .footer__col ul li a:hover { color: var(--red); text-decoration: underline; text-underline-offset: 4px; }
    .footer__bottom {
      padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05);
      display: flex; justify-content: space-between; align-items: center;
      font-family: var(--font-mono); font-size: 0.75rem; color: var(--grayDim);
      letter-spacing: 0.1em; flex-wrap: wrap; gap: 1rem;
    }
    @media (max-width: 768px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; } }

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