/* =========================================================
   VARIÁVEIS GERAIS DO SITE
========================================================= */

:root {
    --bg: #fffaf5;
    --surface: #ffffff;
    --surface-soft: #f7f3ff;
  
    --text: #1f2340;
    --muted: #646b85;
  
    --purple: #6536cf;
    --purple-dark: #45219a;
    --pink: #ee3f7f;
    --yellow: #ffcc35;
    --yellow-dark: #e5a900;
    --blue: #2f80ed;
    --green: #2caf62;
    --orange: #ff8a2a;
  
    --border: #e9e2f6;
  
    --shadow:
      0 18px 50px rgba(51, 32, 112, 0.11);
  
    --shadow-soft:
      0 10px 25px rgba(51, 32, 112, 0.07);
  
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
  
    --max-width: 1160px;
  }
  
  /* =========================================================
     RESET E CONFIGURAÇÕES GERAIS
  ========================================================= */
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
  }
  
  body {
    min-height: 100vh;
  
    font-family:
      Inter,
      ui-sans-serif,
      system-ui,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      Arial,
      sans-serif;
  
    color: var(--text);
    background: var(--bg);
  
    line-height: 1.55;
  
    overflow-x: hidden;
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  img {
    display: block;
  
    max-width: 100%;
    height: auto;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button,
  input,
  textarea,
  select {
    font: inherit;
  }
  
  button,
  a {
    -webkit-tap-highlight-color: transparent;
  }
  
  button:focus-visible,
  a:focus-visible,
  summary:focus-visible {
    outline: 3px solid rgba(47, 128, 237, 0.35);
    outline-offset: 3px;
  }
  
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  
    margin-inline: auto;
  }
  
  .sr-only {
    position: absolute;
  
    width: 1px;
    height: 1px;
  
    padding: 0;
    margin: -1px;
  
    overflow: hidden;
  
    clip: rect(0, 0, 0, 0);
  
    white-space: nowrap;
  
    border: 0;
  }

  .skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--purple-dark);
    color: #ffffff;
    font-weight: 900;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
  }

  .skip-link:focus {
    transform: translateY(0);
  }
  
  /* =========================================================
     BARRA SUPERIOR
  ========================================================= */
  
  .topbar {
    min-height: 34px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    padding: 8px 16px;
  
    background:
      linear-gradient(
        90deg,
        var(--purple-dark),
        var(--purple)
      );
  
    color: #ffffff;
  
    text-align: center;
  
    font-size: 13px;
    font-weight: 800;
  }
  
  /* =========================================================
     CABEÇALHO
  ========================================================= */
  
  .header {
    position: sticky;
  
    top: 0;
    z-index: 100;
  
    background: rgba(255, 250, 245, 0.94);
  
    border-bottom:
      1px solid rgba(101, 54, 207, 0.1);
  
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  
  .header__inner {
    min-height: 72px;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    gap: 24px;
  }
  
  .brand {
    display: flex;
    align-items: center;
  
    gap: 11px;
  
    color: var(--purple-dark);
  
    font-weight: 900;
    line-height: 1.05;
  }
  
  .brand__icon {
    width: 44px;
    height: 44px;
  
    flex: 0 0 44px;
  
    display: grid;
    place-items: center;
  
    border-radius: 15px;
  
    background:
      linear-gradient(
        145deg,
        #ffe36c,
        var(--yellow)
      );
  
    box-shadow: var(--shadow-soft);
  
    font-size: 22px;
  }
  
  .nav {
    display: flex;
    align-items: center;
  
    gap: 22px;
  
    color: var(--muted);
  
    font-size: 14px;
    font-weight: 800;
  }
  
  .nav a {
    transition:
      color 0.2s ease,
      transform 0.2s ease;
  }
  
  .nav a:hover,
  .nav a:focus-visible {
    color: var(--purple);
  }
  
  .menu-toggle {
    width: 44px;
    height: 44px;
  
    display: none;
    place-items: center;
  
    border: 0;
    border-radius: 12px;
  
    background: transparent;
    color: var(--purple-dark);
  
    font-size: 26px;
  
    cursor: pointer;
  }
  
  /* =========================================================
     BOTÕES
  ========================================================= */
  
  .btn {
    min-height: 52px;
  
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    gap: 9px;
  
    padding: 14px 22px;
  
    border: 0;
    border-radius: 999px;
  
    cursor: pointer;
  
    font-weight: 900;
    text-align: center;
  
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      opacity 0.2s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
  }
  
  .btn:active {
    transform: translateY(0);
  }
  
  .btn--primary {
    background:
      linear-gradient(
        180deg,
        #ffe15d,
        var(--yellow)
      );
  
    color: #1b2246;
  
    box-shadow:
      0 14px 28px rgba(255, 204, 53, 0.28);
  }
  
  .btn--primary:hover {
    box-shadow:
      0 18px 34px rgba(255, 204, 53, 0.36);
  }
  
  .btn--secondary {
    background: var(--surface);
    color: var(--purple);
  
    border:
      2px solid rgba(101, 54, 207, 0.14);
  }
  
  .btn--secondary:hover {
    box-shadow: var(--shadow-soft);
  }
  
  .btn--wide {
    width: 100%;
  }
  
  /* =========================================================
     SEÇÃO PRINCIPAL
  ========================================================= */
  
  .hero {
    padding:
      clamp(34px, 5vh, 58px)
      0
      clamp(40px, 6vh, 58px);
  
    overflow: hidden;
  }
  
  .hero__grid {
    min-height:
      min(
        670px,
        calc(100svh - 135px)
      );
  
    display: grid;
  
    grid-template-columns:
      minmax(0, 1.12fr)
      minmax(310px, 0.88fr);
  
    align-items: center;
  
    gap: clamp(30px, 4vw, 52px);
  }
  
  .eyebrow {
    display: inline-flex;
    align-items: center;
  
    gap: 8px;
  
    margin-bottom: 18px;
    padding: 9px 14px;
  
    border-radius: 999px;
  
    background:
      rgba(255, 204, 53, 0.23);
  
    color: var(--purple-dark);
  
    font-size: 12px;
    font-weight: 900;
  
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  
  .hero h1 {
    max-width: 700px;
  
    margin-bottom: 20px;
  
    color: var(--purple-dark);
  
    font-size:
      clamp(
        39px,
        5vw,
        66px
      );
  
    line-height: 1.02;
    letter-spacing: -2.2px;
  }
  
  .highlight {
    color: var(--pink);
  }
  
  .hero__lead {
    max-width: 680px;
  
    margin-bottom: 24px;
  
    color: var(--muted);
  
    font-size:
      clamp(
        17px,
        1.8vw,
        20px
      );
  
    line-height: 1.55;
  }
  
  .check-list {
    display: grid;
  
    gap: 12px;
  
    margin: 0 0 28px;
  
    list-style: none;
  }
  
  .check-list li {
    display: flex;
    align-items: flex-start;
  
    gap: 11px;
  
    font-size: 16px;
    font-weight: 700;
  }
  
  .check-list li::before {
    content: "✓";
  
    width: 27px;
    height: 27px;
  
    flex: 0 0 27px;
  
    display: grid;
    place-items: center;
  
    border-radius: 50%;
  
    background:
      rgba(44, 175, 98, 0.14);
  
    color: var(--green);
  
    font-weight: 1000;
  }
  
  .hero__actions {
    display: flex;
    flex-wrap: wrap;
  
    gap: 12px;
  
    margin-bottom: 14px;
  }
  
  .microcopy {
    color: var(--muted);
  
    font-size: 13px;
    font-weight: 700;
  }
  
  /* =========================================================
     IMAGEM PRINCIPAL
  ========================================================= */
  
  .hero__visual {
    position: relative;
  
    width: 100%;
    min-width: 0;
  
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero__visual::before,
  .hero__visual::after {
    content: "";
  
    position: absolute;
    z-index: -1;
  
    border-radius: 50%;
  
    filter: blur(12px);
  }
  
  .hero__visual::before {
    width: 210px;
    height: 210px;
  
    top: -20px;
    left: -25px;
  
    background:
      rgba(255, 204, 53, 0.38);
  }
  
  .hero__visual::after {
    width: 260px;
    height: 260px;
  
    right: -40px;
    bottom: -35px;
  
    background:
      rgba(101, 54, 207, 0.18);
  }
  
  .product-image {
    width: min(100%, 390px);
    height: auto;
  
    max-height:
      min(
        62vh,
        580px
      );
  
    object-fit: contain;
  
    margin-inline: auto;
  
    border:
      7px solid rgba(255, 255, 255, 0.88);
  
    border-radius: 22px;
  
    box-shadow: var(--shadow);
  }
  
  /* =========================================================
     FAIXA DE CONFIANÇA
  ========================================================= */
  
  .trust-row {
    display: grid;
  
    grid-template-columns:
      repeat(4, minmax(0, 1fr));
  
    gap: 15px;
  
    margin-top: 28px;
  }
  
  .trust-item {
    padding: 17px 16px;
  
    background: var(--surface);
  
    border:
      1px solid var(--border);
  
    border-radius: 18px;
  
    box-shadow: var(--shadow-soft);
  
    text-align: center;
  }
  
  .trust-item span {
    font-size: 26px;
  }
  
  .trust-item strong {
    display: block;
  
    margin-top: 8px;
  
    color: var(--purple-dark);
  
    font-size: 15px;
  }
  
  /* =========================================================
     SEÇÕES
  ========================================================= */
  
  .section {
    padding:
      clamp(44px, 6vw, 64px)
      0;
  }
  
  .section--soft {
    background:
      linear-gradient(
        180deg,
        rgba(247, 243, 255, 0.8),
        rgba(255, 255, 255, 0.25)
      );
  }
  
  .section-heading {
    max-width: 840px;
  
    margin: 0 auto 30px;
  
    text-align: center;
  }
  
  .section-heading__tag {
    display: inline-block;
  
    margin-bottom: 12px;
    padding: 8px 13px;
  
    border-radius: 999px;
  
    background:
      rgba(47, 128, 237, 0.1);
  
    color: var(--blue);
  
    font-size: 12px;
    font-weight: 900;
  
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  
  .section-heading h2 {
    margin-bottom: 12px;
  
    color: var(--purple-dark);
  
    font-size:
      clamp(
        29px,
        4vw,
        45px
      );
  
    line-height: 1.08;
    letter-spacing: -1.2px;
  }
  
  .section-heading p {
    color: var(--muted);
  
    font-size: 17px;
  }
  
  /* =========================================================
     GRADES
  ========================================================= */
  
  .grid {
    display: grid;
  
    gap: 20px;
  }
  
  .grid--2 {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
  
  .grid--3 {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }
  
  .grid--4 {
    grid-template-columns:
      repeat(4, minmax(0, 1fr));
  }
  
  /* =========================================================
     CARTÕES
  ========================================================= */
  
  .card {
    padding: 24px;
  
    background: var(--surface);
  
    border:
      1px solid var(--border);
  
    border-radius: var(--radius-md);
  
    box-shadow: var(--shadow-soft);
  }
  
  .card__icon {
    width: 54px;
    height: 54px;
  
    display: grid;
    place-items: center;
  
    margin-bottom: 15px;
  
    border-radius: 17px;
  
    font-size: 25px;
  }
  
  .card h3 {
    margin-bottom: 9px;
  
    color: var(--purple-dark);
  
    font-size: 21px;
  }
  
  .card p {
    color: var(--muted);
  
    font-size: 15px;
  }
  
  .card ul {
    display: grid;
  
    gap: 8px;
  
    margin-top: 14px;
  
    list-style: none;
  }
  
  .card li {
    display: flex;
    align-items: flex-start;
  
    gap: 9px;
  
    font-size: 14px;
    font-weight: 700;
  }
  
  .card li::before {
    content: "✓";
  
    color: var(--green);
  
    font-weight: 1000;
  }
  
  /* =========================================================
     PRÉVIAS DAS ATIVIDADES
  ========================================================= */
  
  .preview {
    overflow: hidden;
  
    padding: 0;
  }
  
  .preview__top {
    min-height: 145px;
  
    padding: 22px;
  
    background:
      linear-gradient(
        145deg,
        #fbf8ff,
        #f0eaff
      );
  
    border-bottom:
      1px solid var(--border);
  }
  
  .preview__top h3 {
    margin-bottom: 7px;
  }
  
  .preview__bottom {
    display: grid;
  
    gap: 9px;
  
    padding: 18px;
  }
  
  .chip {
    padding: 10px 12px;
  
    background: var(--surface-soft);
    color: var(--purple-dark);
  
    border-radius: 12px;
  
    text-align: center;
  
    font-size: 13px;
    font-weight: 800;
  }
  
  /* =========================================================
     ETAPAS DE FUNCIONAMENTO
  ========================================================= */
  
  .step {
    position: relative;
  
    padding-top: 70px;
  }
  
  .step__number {
    position: absolute;
  
    top: 22px;
    left: 22px;
  
    width: 40px;
    height: 40px;
  
    display: grid;
    place-items: center;
  
    border-radius: 13px;
  
    background:
      linear-gradient(
        180deg,
        #ffe15d,
        var(--yellow)
      );
  
    color: #1b2246;
  
    font-weight: 1000;
  }
  
  /* =========================================================
     ÁREA DA OFERTA
  ========================================================= */
  
  .offer {
    display: grid;
  
    grid-template-columns:
      minmax(0, 1.08fr)
      minmax(320px, 0.92fr);
  
    align-items: stretch;
  
    gap: 24px;
  }
  
  .offer__content,
  .offer__price {
    padding: 30px;
  
    background: var(--surface);
  
    border:
      1px solid var(--border);
  
    border-radius: var(--radius-lg);
  
    box-shadow: var(--shadow);
  }
  
  .offer__content h3,
  .offer__price h3 {
    margin-bottom: 14px;
  
    color: var(--purple-dark);
  
    font-size: 29px;
  }
  
  .price-box {
    margin: 18px 0 20px;
    padding: 26px;
  
    background:
      linear-gradient(
        145deg,
        var(--purple-dark),
        var(--purple)
      );
  
    color: #ffffff;
  
    border-radius: 24px;
  }
  
  .price-box__label {
    opacity: 0.88;
  
    font-size: 12px;
    font-weight: 800;
  
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .price {
    margin: 8px 0;
  
    color: #ffe15d;
  
    font-size:
      clamp(
        54px,
        8vw,
        72px
      );
  
    line-height: 1;
    font-weight: 1000;
  
    letter-spacing: -2px;
  }
  
  .price small {
    margin-right: 3px;
  
    font-size: 26px;
  
    vertical-align: top;
    letter-spacing: 0;
  }
  
  .price-box__sub {
    font-weight: 800;
  }
  
  .guarantee {
    margin-top: 22px;
    padding: 18px;
  
    background:
      rgba(44, 175, 98, 0.09);
  
    border:
      1px solid rgba(44, 175, 98, 0.16);
  
    border-radius: 16px;
  
    color: #145b30;
  
    font-size: 14px;
    font-weight: 700;
  }
  
  /* =========================================================
     PERGUNTAS FREQUENTES
  ========================================================= */
  
  .faq {
    max-width: 900px;
  
    display: grid;
  
    gap: 13px;
  
    margin: 0 auto;
  }
  
  details {
    padding: 18px 20px;
  
    background: var(--surface);
  
    border:
      1px solid var(--border);
  
    border-radius: 17px;
  
    box-shadow: var(--shadow-soft);
  }
  
  summary {
    position: relative;
  
    padding-right: 28px;
  
    color: var(--purple-dark);
  
    font-size: 17px;
    font-weight: 900;
  
    list-style: none;
  
    cursor: pointer;
  }
  
  summary::-webkit-details-marker {
    display: none;
  }
  
  summary::after {
    content: "+";
  
    position: absolute;
  
    top: -2px;
    right: 0;
  
    color: var(--pink);
  
    font-size: 25px;
  }
  
  details[open] summary::after {
    content: "−";
  }
  
  details p {
    margin-top: 12px;
  
    color: var(--muted);
  
    font-size: 15px;
  }
  
  /* =========================================================
     CHAMADA FINAL
  ========================================================= */
  
  .final-cta {
    padding: 25px 0 80px;
  }
  
  .final-cta__box {
    padding:
      clamp(
        34px,
        5vw,
        50px
      )
      26px;
  
    background:
      linear-gradient(
        145deg,
        var(--purple-dark),
        var(--purple)
      );
  
    color: #ffffff;
  
    border-radius: 32px;
  
    box-shadow: var(--shadow);
  
    text-align: center;
  }
  
  .final-cta__box h2 {
    max-width: 780px;
  
    margin: 0 auto 13px;
  
    font-size:
      clamp(
        29px,
        4vw,
        45px
      );
  
    line-height: 1.08;
  }
  
  .final-cta__box p {
    max-width: 720px;
  
    margin: 0 auto 22px;
  
    opacity: 0.92;
  
    font-size: 17px;
  }
  
  /* =========================================================
     RODAPÉ
  ========================================================= */
  
  .footer {
    padding: 36px 0 95px;
  
    background: #ffffff;
  
    border-top:
      1px solid var(--border);
  }
  
  .footer__grid {
    display: grid;
  
    grid-template-columns:
      1.2fr
      0.8fr
      0.8fr;
  
    gap: 28px;
  }
  
  .footer h4 {
    margin-bottom: 11px;
  
    color: var(--purple-dark);
  
    font-size: 17px;
  }
  
  .footer p,
  .footer a,
  .footer li {
    color: var(--muted);
  
    font-size: 14px;
  }
  
  .footer ul {
    display: grid;
  
    gap: 8px;
  
    list-style: none;
  }
  
  .footer a {
    transition: color 0.2s ease;
  }
  
  .footer a:hover {
    color: var(--purple);
  }
  
  .footer__bottom {
    margin-top: 26px;
    padding-top: 20px;
  
    border-top:
      1px solid var(--border);
  
    color: var(--muted);
  
    text-align: center;
  
    font-size: 13px;
  }
  
  /* =========================================================
     AVISO DE COOKIES
  ========================================================= */
  
  .cookie-banner {
    position: fixed;
  
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 500;
  
    max-width: 850px;
  
    display: none;
    align-items: center;
  
    gap: 18px;
  
    margin: 0 auto;
    padding: 18px;
  
    background: #ffffff;
  
    border:
      1px solid var(--border);
  
    border-radius: 18px;
  
    box-shadow:
      0 18px 60px rgba(31, 35, 64, 0.18);
  }
  
  .cookie-banner.show {
    display: flex;
  }
  
  .cookie-banner p {
    flex: 1;
  
    color: var(--muted);
  
    font-size: 13px;
  }
  
  .cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
  
    gap: 8px;
  }
  
  .cookie-banner .btn {
    min-height: 42px;
  
    padding: 10px 16px;
  
    font-size: 13px;
  }
  
  /* =========================================================
     BOTÃO FIXO NO CELULAR
  ========================================================= */
  
  .sticky-mobile {
    position: fixed;
  
    left: 13px;
    right: 13px;
    bottom: 13px;
    bottom: max(13px, env(safe-area-inset-bottom, 0px));
    z-index: 120;
  
    display: none;
  }
  
  /* =========================================================
     PÁGINAS JURÍDICAS
  ========================================================= */
  
  .legal-page {
    padding: 60px 0 90px;
  }
  
  .legal-card {
    padding:
      clamp(
        24px,
        4vw,
        46px
      );
  
    background: #ffffff;
  
    border:
      1px solid var(--border);
  
    border-radius: 24px;
  
    box-shadow: var(--shadow-soft);
  }
  
  .legal-card h1 {
    margin-bottom: 10px;
  
    color: var(--purple-dark);
  
    font-size:
      clamp(
        34px,
        5vw,
        50px
      );
  }
  
  .legal-card h2 {
    margin: 28px 0 10px;
  
    color: var(--purple-dark);
  
    font-size: 23px;
  }
  
  .legal-card p,
  .legal-card li {
    margin-bottom: 10px;
  
    color: var(--muted);
  }
  
  .legal-card ul,
  .legal-card ol {
    margin-bottom: 15px;
    padding-left: 22px;
  }
  
  .notice {
    margin: 18px 0;
    padding: 14px 16px;
  
    background: #fff8d6;
    color: #5a4710;
  
    border-left:
      4px solid var(--yellow);
  
    border-radius:
      0 12px 12px 0;
  
    font-size: 14px;
  }
  
  /* =========================================================
     PÁGINA DE AGRADECIMENTO
  ========================================================= */
  
  .thank-you {
    min-height: 70vh;
  
    display: grid;
    place-items: center;
  
    padding: 70px 0;
  }
  
  .thank-you__card {
    width: min(100%, 760px);
  
    padding: 42px 28px;
  
    background: #ffffff;
  
    border:
      1px solid var(--border);
  
    border-radius: 28px;
  
    box-shadow: var(--shadow);
  
    text-align: center;
  }
  
  .thank-you__icon {
    width: 76px;
    height: 76px;
  
    display: grid;
    place-items: center;
  
    margin: 0 auto 18px;
  
    background:
      rgba(44, 175, 98, 0.12);
  
    color: var(--green);
  
    border-radius: 50%;
  
    font-size: 38px;
    font-weight: 1000;
  }
  
  .thank-you__card h1 {
    margin-bottom: 12px;
  
    color: var(--purple-dark);
  
    font-size:
      clamp(
        34px,
        5vw,
        50px
      );
  
    line-height: 1.08;
  }
  
  .thank-you__card p {
    margin-bottom: 20px;
  
    color: var(--muted);
  
    font-size: 17px;
  }
  
  /* =========================================================
     NOTEBOOKS COM POUCA ALTURA
  ========================================================= */
  
  @media (min-width: 981px) and (max-height: 780px) {
    .hero {
      padding-top: 28px;
      padding-bottom: 34px;
    }
  
    .hero__grid {
      min-height: auto;
  
      grid-template-columns:
        minmax(0, 1.15fr)
        minmax(290px, 0.85fr);
  
      gap: 38px;
    }
  
    .hero h1 {
      margin-bottom: 16px;
  
      font-size:
        clamp(
          38px,
          4.3vw,
          56px
        );
    }
  
    .hero__lead {
      margin-bottom: 18px;
  
      font-size: 17px;
    }
  
    .check-list {
      gap: 9px;
  
      margin-bottom: 20px;
    }
  
    .check-list li {
      font-size: 14px;
    }
  
    .product-image {
      width: min(100%, 345px);
  
      max-height: 520px;
    }
  
    .trust-row {
      margin-top: 20px;
    }
  }
  
  /* =========================================================
     TABLETS E TELAS MÉDIAS
  ========================================================= */
  
  @media (max-width: 980px) {
    .hero__grid {
      min-height: auto;
  
      grid-template-columns: 1fr;
  
      gap: 36px;
    }
  
    .offer,
    .footer__grid {
      grid-template-columns: 1fr;
    }
  
    .grid--4 {
      grid-template-columns:
        repeat(2, minmax(0, 1fr));
    }
  
    .grid--3 {
      grid-template-columns:
        repeat(2, minmax(0, 1fr));
    }
  
    .nav,
    .header__inner > [data-checkout] {
      display: none;
    }
  
    .menu-toggle {
      display: grid;
    }
  
    .nav.mobile-open {
      position: fixed;
  
      top: 72px;
      left: 0;
      right: 0;
      z-index: 110;
  
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  
      padding: 22px 24px 26px;
  
      background: #fffaf5;
  
      border-bottom:
        1px solid var(--border);
  
      box-shadow: var(--shadow-soft);
    }
  
    .hero__visual {
      max-width: 520px;
  
      margin: 0 auto;
    }
  
    .product-image {
      width: min(100%, 410px);
  
      max-height: none;
    }
  
    .hero h1,
    .hero__lead {
      max-width: 760px;
    }
  }
  
  /* =========================================================
     CELULARES
  ========================================================= */
  
  @media (max-width: 680px) {
    html {
      scroll-padding-top: 80px;
    }
  
    .container {
      width: min(calc(100% - 24px), var(--max-width));
    }
  
    .topbar {
      min-height: 30px;
  
      padding: 7px 12px;
  
      font-size: 11px;
    }
  
    .header__inner {
      min-height: 66px;
    }
  
    .brand {
      font-size: 14px;
    }
  
    .brand__icon {
      width: 40px;
      height: 40px;
  
      flex-basis: 40px;
  
      font-size: 20px;
    }
  
    .nav.mobile-open {
      top: 66px;
    }
  
    .hero {
      padding-top: 36px;
      padding-bottom: 40px;
    }
  
    .hero__grid {
      gap: 30px;
    }
  
    .hero h1 {
      font-size:
        clamp(
          38px,
          12vw,
          52px
        );
  
      letter-spacing: -1.5px;
    }
  
    .hero__lead {
      font-size: 17px;
    }
  
    .hero__actions {
      flex-direction: column;
    }
  
    .hero__actions .btn {
      width: 100%;
    }
  
    .hero__visual {
      width: 100%;
      max-width: 390px;
    }
  
    .product-image {
      width: min(100%, 350px);
  
      max-height: none;
  
      border-width: 5px;
      border-radius: 18px;
    }
  
    .grid--2,
    .grid--3,
    .grid--4,
    .trust-row {
      grid-template-columns: 1fr;
    }
  
    .section {
      padding: 42px 0;
    }
  
    .section-heading {
      margin-bottom: 24px;
    }
  
    .offer__content,
    .offer__price {
      padding: 23px;
    }
  
    .price {
      font-size: 58px;
    }
  
    .cookie-banner {
      left: 12px;
      right: 12px;
      bottom: 82px;
      bottom: calc(82px + env(safe-area-inset-bottom, 0px));
  
      align-items: stretch;
      flex-direction: column;
    }
  
    .cookie-banner__actions {
      display: grid;
      grid-template-columns: 1fr;
    }
  
    .cookie-banner__actions .btn {
      width: 100%;
    }
  
    .sticky-mobile {
      display: block;
    }
  
    .footer {
      padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px));
    }

    .final-cta {
      padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px));
    }
  }
  
  /* =========================================================
     CELULARES PEQUENOS
  ========================================================= */
  
  @media (max-width: 420px) {
    .hero h1 {
      font-size: 39px;
    }
  
    .eyebrow {
      padding: 8px 11px;
  
      font-size: 10px;
    }
  
    .check-list li {
      font-size: 14px;
    }
  
    .product-image {
      width: min(100%, 320px);
    }
  
    .card {
      padding: 21px;
    }
  
    .price {
      font-size: 51px;
    }
  
    .final-cta__box {
      border-radius: 24px;
    }
  }
  
  /* =========================================================
     ACESSIBILIDADE
  ========================================================= */
  
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
  
    *,
    *::before,
    *::after {
      transition-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
    }
  }
