/* ==========================================================================
   Clésia Personal — Folha de estilo principal
   Paleta: laranja + branco (tons claros)
   Escrito em CSS puro (sem frameworks / sem build) para máxima performance,
   pois a velocidade de carregamento é fator direto de SEO no Google.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS (cores, sombras, espaçamentos)
   Para mudar a identidade visual do site inteiro, mude só aqui.
   -------------------------------------------------------------------------- */
:root {
  --brand:      #f97316;
  --brand-600:  #ea580c;
  --brand-700:  #c2410c;
  --brand-100:  #ffe4cc;
  --brand-50:   #fff3e9;

  --cream:      #fffaf5;
  --white:      #ffffff;

  --ink:        #2a1e16;
  --body:       #6f6055;
  --line:       #f3e6da;

  --radius-sm:  14px;
  --radius:     22px;
  --radius-lg:  32px;
  --radius-pill: 999px;

  --shadow-sm:  0 6px 18px rgba(122, 78, 40, .06);
  --shadow:     0 14px 40px rgba(122, 78, 40, .09);
  --shadow-lg:  0 26px 70px rgba(122, 78, 40, .14);
  --shadow-brand: 0 14px 34px rgba(249, 115, 22, .28);

  --container:  1200px;
  --header-h:   72px;

  --font: "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
          Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { color: var(--ink); margin: 0; line-height: 1.15; letter-spacing: -.02em; font-weight: 800; }
p { margin: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

.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: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brand); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--cream { background: var(--cream); }
.section--tint  { background: linear-gradient(180deg, var(--brand-50), var(--white)); }

.section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-head p { margin-top: 16px; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 12px;
}

h1 { font-size: clamp(2.1rem, 6.2vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4.4vw, 2.85rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }

.lead { font-size: clamp(1rem, 2.2vw, 1.15rem); }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* --------------------------------------------------------------------------
   4. BOTÕES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: .98rem;
  text-align: center;
  transition: transform .18s ease, background-color .18s ease,
              box-shadow .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { background: var(--brand-600); }

.btn--ghost {
  background: var(--white); color: var(--ink);
  border: 1.5px solid var(--line); box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-600); }

.btn--light { background: #fff; color: var(--brand-700); box-shadow: var(--shadow); }
.btn--sm { padding: 11px 20px; font-size: .88rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* --------------------------------------------------------------------------
   5. CABEÇALHO + NAVEGAÇÃO
   -------------------------------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo {
  font-weight: 900; font-size: 1.05rem; letter-spacing: -.02em;
  color: var(--ink); white-space: nowrap;
}
.logo span { color: var(--brand); }

.nav { display: none; }
.nav a {
  font-size: .93rem; font-weight: 700; color: var(--body);
  padding: 6px 2px; transition: color .18s ease;
}
.nav a:hover, .nav a.is-active { color: var(--brand-600); }

.header__cta { display: none; }

/* botão hambúrguer */
.burger {
  width: 46px; height: 46px; border-radius: 14px;
  border: 1.5px solid var(--line); background: var(--white);
  display: inline-flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px;
}
.burger span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform .25s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* menu mobile */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 12px 20px 24px;
  display: grid; gap: 2px;
  transform: translateY(-12px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.mobile-nav a {
  padding: 13px 4px; font-weight: 700; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 16px; }

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 40px) 0 clamp(56px, 8vw, 96px);
  background:
    radial-gradient(60rem 40rem at 88% 8%, rgba(249, 115, 22, .13), transparent 60%),
    radial-gradient(40rem 34rem at 4% 88%, rgba(249, 115, 22, .07), transparent 60%),
    linear-gradient(160deg, #ffffff 0%, var(--cream) 60%, var(--brand-50) 100%);
  overflow: hidden;
}
.hero__grid { display: grid; gap: clamp(36px, 6vw, 56px); align-items: center; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--brand-100);
  color: var(--brand-700); font-weight: 800; font-size: .82rem;
  padding: 9px 16px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.hero p.lead { margin-top: 22px; max-width: 58ch; }
.hero .btn-row { margin-top: 32px; }

.hero__stats {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  max-width: 560px;
}
.hero__stats div {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 10px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.hero__stats strong { display: block; color: var(--brand); font-size: 1.3rem; font-weight: 900; }
.hero__stats span { font-size: .74rem; font-weight: 700; color: var(--body); }

.hero__media { position: relative; max-width: 480px; margin-inline: auto; width: 100%; }
.hero__media::before {
  content: ""; position: absolute; inset: -18px; border-radius: var(--radius-lg);
  background: rgba(249, 115, 22, .14); filter: blur(38px); z-index: 0;
}
.frame {
  position: relative; z-index: 1;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 12px; box-shadow: var(--shadow-lg);
}
.frame img { border-radius: calc(var(--radius-lg) - 12px); width: 100%; object-fit: cover; }

.hero__badge {
  position: relative; z-index: 2;
  margin: -34px 18px 0;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow);
}
.hero__badge strong { display: block; color: var(--ink); font-size: .95rem; }
.hero__badge span { font-size: .86rem; }

/* --------------------------------------------------------------------------
   7. CARDS GENÉRICOS
   -------------------------------------------------------------------------- */
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card--hover:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--brand-100); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .95rem; }

.card--pain { background: var(--brand-50); border-color: var(--brand-100); }
.card--pain p { color: var(--ink); font-weight: 700; font-size: .96rem; }

.step { background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: var(--radius); padding: 26px; }
.step b { font-size: 1.7rem; font-weight: 900; color: var(--brand); line-height: 1; }
.step h3 { margin: 10px 0 8px; font-size: 1.1rem; }
.step p { font-size: .93rem; }

.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .97rem;
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before { content: "✔"; color: var(--brand); font-weight: 900; flex: none; }
.check-list--no li::before { content: "✖"; color: #c4b5aa; }

.link-arrow { display: inline-block; margin-top: 18px; font-weight: 800; color: var(--brand-600); font-size: .93rem; }
.link-arrow:hover { color: var(--brand-700); }

/* --------------------------------------------------------------------------
   8. PLANOS
   -------------------------------------------------------------------------- */
.plan { display: flex; flex-direction: column; position: relative; }
.plan__tag {
  align-self: flex-start; background: var(--brand-50); color: var(--brand-700);
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 13px; border-radius: var(--radius-pill);
}
.plan h3 { margin: 16px 0 6px; font-size: 1.35rem; }
.plan__desc { font-size: .92rem; }
.plan__price { margin: 22px 0 6px; }
.plan__price s { font-size: .85rem; color: #b8a99d; display: block; }
.plan__price strong { font-size: 2.3rem; font-weight: 900; color: var(--brand); letter-spacing: -.03em; }
.plan__price em { font-style: normal; font-size: .9rem; color: var(--body); }
.plan ul { margin: 18px 0 26px; }
.plan .btn { margin-top: auto; }

.plan--featured { border: 2px solid var(--brand); box-shadow: var(--shadow); }
.plan__ribbon {
  position: absolute; top: -14px; left: 26px;
  background: var(--brand); color: #fff; font-size: .72rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 16px; border-radius: var(--radius-pill); box-shadow: var(--shadow-brand);
}
.plan-note { margin-top: 26px; text-align: center; font-size: .9rem; }

/* --------------------------------------------------------------------------
   9. ANTES E DEPOIS (imagem única emoldurada)
   -------------------------------------------------------------------------- */
.result {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.result:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.result__frame {
  position: relative; display: block; width: 100%; padding: 0;
  border: 2px solid var(--brand-100); border-radius: var(--radius);
  overflow: hidden; background: var(--brand-50); cursor: zoom-in;
}
.result__frame img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform .4s ease;
}
.result__frame:hover img { transform: scale(1.03); }
.result__zoom {
  position: absolute; right: 12px; bottom: 12px;
  background: rgba(255, 255, 255, .94); color: var(--brand-700);
  font-size: .72rem; font-weight: 800; padding: 7px 13px;
  border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.result__info { padding: 18px 14px 10px; }
.result__info h3 { font-size: 1.2rem; }
.result__info .tag { color: var(--brand-600); font-weight: 800; font-size: .85rem; }
.result__info .city {
  float: right; font-size: .74rem; font-weight: 700; color: var(--body);
  background: var(--brand-50); border-radius: var(--radius-pill); padding: 5px 12px;
}

/* --------------------------------------------------------------------------
   10. DEPOIMENTOS EM VÍDEO
   -------------------------------------------------------------------------- */
.video-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 12px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.video-card video {
  width: 100%; aspect-ratio: 9 / 16; object-fit: cover;
  border-radius: var(--radius); background: var(--brand-50);
  border: 2px solid var(--brand-100);
}
.video-card__info { padding: 16px 12px 8px; }
.video-card__info h3 { font-size: 1.1rem; }
.video-card__info p { font-size: .9rem; margin-top: 6px; }

/* estado exibido quando o arquivo de vídeo ainda não foi enviado */
.video-card__pendente {
  margin: -46px 12px 0; position: relative; z-index: 2;
  background: rgba(255, 255, 255, .95); border: 1px solid var(--brand-100);
  border-radius: var(--radius-pill); padding: 9px 16px; text-align: center;
  font-size: .82rem; font-weight: 800; color: var(--brand-700);
  box-shadow: var(--shadow-sm);
}
.video-card--pendente video { pointer-events: none; }

.video-empty {
  border: 2px dashed var(--brand-100); background: var(--brand-50);
  border-radius: var(--radius-lg); padding: 34px 26px; text-align: center;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.video-empty span {
  width: 52px; height: 52px; border-radius: 50%; background: var(--white);
  color: var(--brand); font-size: 1.5rem; font-weight: 900;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.video-empty h3 { margin: 16px 0 8px; font-size: 1.1rem; }
.video-empty p { font-size: .9rem; max-width: 34ch; }

/* bloco de atendimento presencial (SEO local) */
.local-card { margin-top: 24px; padding: 12px; overflow: hidden; }
.local-card img {
  width: 100%; height: 100%; min-height: 220px; max-height: 380px;
  object-fit: cover; border-radius: 18px;
}
.local-card__text { padding: 18px 14px; align-self: center; }
.local-card__text p { margin-top: 12px; }

/* --------------------------------------------------------------------------
   11. SOBRE
   -------------------------------------------------------------------------- */
.about { display: grid; gap: clamp(32px, 6vw, 60px); align-items: center; }
.about__media { position: relative; max-width: 460px; margin-inline: auto; width: 100%; }
.mini-grid { display: grid; gap: 10px; margin: 26px 0 30px; }
.mini-grid p {
  background: var(--brand-50); border: 1px solid var(--brand-100);
  border-radius: var(--radius-sm); padding: 13px 16px;
  font-size: .9rem; font-weight: 700; color: var(--ink);
}

/* --------------------------------------------------------------------------
   12. FAQ (rico para SEO — aparece como "perguntas frequentes" no Google)
   -------------------------------------------------------------------------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 4px 22px; box-shadow: var(--shadow-sm);
}
.faq details[open] { border-color: var(--brand-100); box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 30px 18px 0;
  font-weight: 800; color: var(--ink); font-size: 1rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--brand); font-size: 1.5rem; font-weight: 700; line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 20px; font-size: .95rem; }

/* --------------------------------------------------------------------------
   13. CTA FINAL + COMPARTILHAMENTO
   -------------------------------------------------------------------------- */
.cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: #fff; text-align: center;
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, .93); max-width: 62ch; margin: 18px auto 0; }
.cta .btn-row { justify-content: center; margin-top: 32px; }

.share { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }
.share a, .share button {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: 11px 20px;
  font-size: .88rem; font-weight: 800; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: transform .18s ease, color .18s ease, border-color .18s ease;
}
.share a:hover, .share button:hover { transform: translateY(-2px); color: var(--brand-600); border-color: var(--brand-100); }

/* --------------------------------------------------------------------------
   14. RODAPÉ (claro, dentro da paleta laranja/branco)
   -------------------------------------------------------------------------- */
.footer { background: var(--cream); border-top: 1px solid var(--line); padding: clamp(44px, 6vw, 72px) 0 28px; }
.footer__grid { display: grid; gap: 32px; }
.footer h4 { font-size: .95rem; margin-bottom: 14px; }
.footer li { padding: 5px 0; font-size: .92rem; }
.footer a:hover { color: var(--brand-600); }
.footer__bottom {
  margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: .84rem;
}

/* --------------------------------------------------------------------------
   15. BOTÃO FLUTUANTE DO WHATSAPP (todas as telas)
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; font-weight: 800; font-size: .92rem;
  padding: 14px 20px; border-radius: var(--radius-pill);
  box-shadow: 0 14px 34px rgba(37, 211, 102, .38);
  transition: transform .18s ease;
}
.wa-float:hover { transform: translateY(-3px); }
.wa-float svg { width: 20px; height: 20px; fill: currentColor; flex: none; }
.wa-float span { display: none; }

/* --------------------------------------------------------------------------
   16. LIGHTBOX (ampliar antes e depois)
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(42, 30, 22, .82);
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(94vw, 620px); max-height: 88vh; width: auto;
  border-radius: var(--radius); border: 6px solid #fff; box-shadow: var(--shadow-lg);
}
.lightbox__close {
  position: absolute; top: 16px; right: 16px;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--ink); font-size: 1.4rem; font-weight: 700;
  display: grid; place-items: center; box-shadow: var(--shadow);
}

/* --------------------------------------------------------------------------
   17. ANIMAÇÃO DE ENTRADA
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   18. RESPONSIVIDADE
   Mobile-first: as regras acima já são a versão de celular.
   ========================================================================== */

/* Celulares pequenos ------------------------------------------------------ */
@media (max-width: 400px) {
  body { font-size: 16px; }
  .hero__stats { grid-template-columns: 1fr; max-width: 100%; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
}

/* Celular grande / tablet pequeno ----------------------------------------- */
@media (min-width: 560px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .results-grid, .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .wa-float span { display: inline; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet ------------------------------------------------------------------ */
@media (min-width: 768px) {
  :root { --header-h: 76px; }
  .container { padding-inline: 28px; }
  .grid { gap: 24px; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .result__info { padding: 20px 16px 12px; }
  .section-head { margin-bottom: 52px; }
}

/* Tablet grande / notebook ------------------------------------------------ */
@media (min-width: 900px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .split-media { grid-template-columns: .95fr 1.05fr; align-items: stretch; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
}

/* Desktop ----------------------------------------------------------------- */
@media (min-width: 1024px) {
  :root { --header-h: 84px; }
  body { font-size: 17.5px; }

  .burger, .mobile-nav { display: none; }
  .nav { display: flex; align-items: center; gap: 26px; }
  .header__cta { display: inline-flex; }

  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .hero__media { margin-inline: 0 0; margin-left: auto; }

  .about { grid-template-columns: .9fr 1.1fr; }
  .about__media { margin-inline: 0; }

  .grid-5 { grid-template-columns: repeat(5, 1fr); }
  .steps-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }

  .results-grid { grid-template-columns: repeat(3, 1fr); }
  .videos-grid { grid-template-columns: repeat(3, 1fr); }

  .wa-float { right: 24px; bottom: 24px; }
}

/* Notebook grande --------------------------------------------------------- */
@media (min-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Telas grandes ----------------------------------------------------------- */
@media (min-width: 1400px) {
  :root { --container: 1280px; }
  body { font-size: 18px; }
}

/* Impressão --------------------------------------------------------------- */
@media print {
  .header, .mobile-nav, .wa-float, .lightbox, .share { display: none !important; }
  body { font-size: 12pt; }
}
