:root {
  --chocolate: #5b3527;
  --chocolate-dark: #3f241e;
  --terracotta: #a66a4f;
  --rose: #b96f70;
  --rose-dark: #aa5f60;
  --blush: #f6d7cc;
  --sand: #ead8c3;
  --cream: #f7f0e7;
  --paper: #fffaf7;
  --ink: #4c3530;
  --muted: #79635d;
  --line: rgba(91, 53, 39, .15);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; opacity: .045; z-index: 20; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E"); }
a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.announcement { height: 34px; display: flex; align-items: center; justify-content: center; gap: 13px; padding: 0 18px; color: #fff; background: var(--chocolate-dark); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.announcement span { width: 3px; height: 3px; border-radius: 50%; background: var(--blush); }

.hero { min-height: calc(100vh - 34px); position: relative; overflow: hidden; background: #f7f0e7 url("../images/hero-laura.webp") center/cover no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,250,247,.34) 0%, rgba(255,250,247,.08) 48%, transparent 68%); }
.hero::after { content: ""; width: 530px; height: 530px; position: absolute; right: -270px; bottom: -310px; border: 1px solid rgba(91,53,39,.13); border-radius: 50%; pointer-events: none; }
.hero .hero-content.shell { width: calc(100% - 80px); max-width: none; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; border: 1px solid var(--terracotta); border-radius: 50%; display: grid; place-items: center; font: 600 17px/1 var(--serif); color: var(--chocolate); }
.brand b, .brand small { display: block; }
.brand b { font: 600 16px/1.15 var(--serif); }
.brand small { margin-top: 4px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.hero-content { min-height: calc(100vh - 34px); position: relative; z-index: 1; display: grid; grid-template-columns: 52% 48%; align-items: center; padding-bottom: 54px; }
.hero-copy { width: calc(100% - clamp(70px, 6vw, 140px)); max-width: 720px; margin-left: clamp(70px, 6vw, 140px); padding: 56px 0 40px; }
.hero-logo { width: clamp(220px, 18vw, 320px); height: auto; margin-bottom: 32px; }
.eyebrow { margin: 0 0 20px; color: var(--terracotta); font-size: 11px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow.light { color: #edb7aa; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 700px; margin-bottom: 22px; color: var(--chocolate-dark); font: 500 clamp(54px, 4.65vw, 82px)/.98 var(--serif); letter-spacing: -.043em; }
h1 em, h2 em { color: var(--rose-dark); font-weight: 500; }
.hero-body { max-width: 620px; margin-bottom: 32px; color: #684f47; font-size: 17px; line-height: 1.68; }
.botao-rotina {
  --cor-topo: #b77776;
  --cor-base: #a46362;
  --cor-texto: #fff8f3;
  --cor-borda: #dfb7b1;

  box-sizing: border-box;
  position: relative;
  isolation: isolate;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;

  width: 430px;
  max-width: 100%;
  min-height: 64px;
  padding: 14px 32px;

  border: 3px solid var(--cor-borda);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--cor-topo),
    var(--cor-base)
  );
  color: var(--cor-texto);

  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 1px rgb(80 37 36 / 12%);

  box-shadow:
    0 9px 16px -4px rgb(91 50 49 / 38%),
    0 2px 4px rgb(91 50 49 / 14%),
    inset 0 1px 2px rgb(255 255 255 / 30%),
    inset 0 -2px 4px rgb(83 33 35 / 12%),
    0 0 0 1px rgb(156 82 82 / 16%);

  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;

  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

/* Reflexo suave na superfície */
.botao-rotina::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgb(255 255 255 / 10%),
    transparent 50%
  );
  pointer-events: none;
}

/* Faixa de luz animada */
.botao-rotina::after {
  content: "";
  position: absolute;
  inset: -100% auto -100% -50%;
  width: 28%;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255 255 255 / 24%),
    transparent
  );
  transform: skewX(-20deg);
  pointer-events: none;
  opacity: 0;
}

.botao-rotina__icone {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
  transition: transform 300ms ease;
}

@media (hover: hover) {
  .botao-rotina:not(:disabled):hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow:
      0 13px 22px -5px rgb(91 50 49 / 38%),
      inset 0 1px 2px rgb(255 255 255 / 35%),
      inset 0 -2px 4px rgb(83 33 35 / 12%),
      0 0 0 1px rgb(156 82 82 / 16%);
  }

  .botao-rotina:not(:disabled):hover::after {
    animation: reflexo-botao 800ms ease-out;
  }

  .botao-rotina:not(:disabled):hover .botao-rotina__icone {
    transform: rotate(90deg) scale(1.12);
  }
}

.botao-rotina:not(:disabled):active {
  transform: translateY(1px) scale(0.98);
  filter: brightness(0.96);
}

.botao-rotina:focus-visible {
  outline: 3px solid #744443;
  outline-offset: 5px;
}

.botao-rotina:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@keyframes reflexo-botao {
  0%   { left: -50%; opacity: 0; }
  15%  { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

@media (max-width: 480px) {
  .botao-rotina {
    gap: 12px;
    padding-inline: 20px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .botao-rotina,
  .botao-rotina__icone {
    transition: none;
  }

  .botao-rotina::after {
    animation: none !important;
  }
}

.routine-button { display: none; }
.microcopy { margin: 14px 0 0 3px; color: var(--muted); font-size: 11px; letter-spacing: .04em; }
.hero-visual { min-height: 680px; position: relative; align-self: end; }
.hero-signature { position: absolute; z-index: 5; right: 20px; bottom: 22px; padding: 10px 15px; border: 1px solid rgba(91,53,39,.14); border-radius: 18px; color: var(--chocolate); background: rgba(255,250,247,.9); font: italic 500 14px var(--serif); box-shadow: 0 8px 24px rgba(91,53,39,.12); }
.scroll-cue { position: absolute; z-index: 3; bottom: 18px; left: 50%; width: 46px; height: 46px; display: grid; place-items: center; color: var(--paper); background: var(--chocolate); border: 6px solid var(--cream); border-radius: 50%; text-decoration: none; transform: translateX(-50%); }
.ticker { overflow: hidden; padding: 14px 0; color: #f9e8df; background: var(--terracotta); white-space: nowrap; }
.ticker-track { display: flex; width: max-content; font-size: 10px; font-weight: 700; letter-spacing: .22em; animation: ticker 40s linear infinite; }
.ticker-group { display: flex; flex-shrink: 0; align-items: center; gap: 34px; padding-right: 34px; }
.ticker-item { display: inline-flex; align-items: center; gap: 34px; }
.ticker-item i { color: #ffe6dc; font-size: 11px; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

h2 { color: var(--chocolate); font: 500 clamp(39px, 4.2vw, 62px)/1.04 var(--serif); letter-spacing: -.035em; }
.recognition { position: relative; overflow: hidden; background: var(--paper); }
.recognition::before { content: ""; height: 54px; position: absolute; top: -27px; right: -2%; left: -2%; border-radius: 50%; background: var(--terracotta); }
.soft-orbit { position: absolute; border: 1px solid rgba(166,106,79,.11); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 440px; height: 440px; left: -260px; bottom: -160px; box-shadow: 0 0 0 42px rgba(166,106,79,.025), 0 0 0 84px rgba(166,106,79,.02); }
.recognition-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: start; }
.section-intro p:last-child { max-width: 550px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.pain-list { border-top: 1px solid var(--line); }
.pain-list article { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.pain-list span { color: var(--rose-dark); font: italic 500 18px var(--serif); }
.pain-list p { margin: 0; font-size: 16px; line-height: 1.55; }

.method { position: relative; overflow: hidden; color: var(--paper); background: linear-gradient(145deg, var(--chocolate-dark), #6d4033 60%, #7c493a); }
.method::before { content: "CLARA"; position: absolute; top: -68px; right: -25px; color: rgba(255,255,255,.035); font: 600 260px/1 var(--serif); letter-spacing: -.08em; }
.method-heading { max-width: 720px; position: relative; }
.method h2 { color: var(--paper); }
.method-heading > p:last-child { max-width: 610px; color: #dfc9bf; line-height: 1.7; }
.method-line { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; margin-top: 48px; }
.method-line article { min-height: 250px; padding: 27px 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.055); box-shadow: 0 18px 45px rgba(40,20,16,.14); transition: transform .25s ease, background .25s ease; }
.method-line article:hover { transform: translateY(-7px); background: rgba(255,255,255,.09); }
.method-line article:nth-child(3) { background: rgba(246,215,204,.14); }
.method-line b { width: 55px; height: 55px; margin-bottom: 29px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: var(--chocolate); background: var(--blush); font: 500 28px var(--serif); }
.method-line span { display: block; margin-bottom: 10px; color: #fff; font: 500 20px var(--serif); }
.method-line p { margin: 0; color: #d5bfb6; font-size: 13px; line-height: 1.55; }
.method-note { max-width: 900px; margin: 45px 0 0; padding: 20px 25px; border-left: 2px solid var(--rose); color: #e5d1c8; background: rgba(255,255,255,.04); font-size: 13px; line-height: 1.7; }

.inside { position: relative; overflow: hidden; background: var(--cream); }
.inside::after { content: ""; width: 480px; height: 480px; position: absolute; z-index: 0; right: -260px; bottom: -230px; border: 1px solid rgba(166,106,79,.14); border-radius: 50%; box-shadow: 0 0 0 48px rgba(166,106,79,.025); }
.inside-grid { position: relative; z-index: 1; }
.inside-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: center; }
.book-stage { min-height: 580px; position: relative; display: grid; place-items: center; }
.book-stage::before { content: ""; width: 430px; height: 430px; position: absolute; border: 1px solid rgba(166,106,79,.24); border-radius: 50%; }
.book-stage::after { content: ""; width: 340px; height: 340px; position: absolute; border: 1px solid rgba(166,106,79,.13); border-radius: 50%; }
.book-stage img { width: 310px; height: auto; aspect-ratio: 719 / 1024; object-fit: contain; max-width: 100%; position: relative; z-index: 2; border-radius: 4px; box-shadow: 18px 24px 38px rgba(63,36,30,.26); transform: rotate(-3deg); transition: transform .3s ease; }
.book-stage img:hover { transform: rotate(0deg) scale(1.02); }
.book-shadow { width: 280px; height: 50px; position: absolute; z-index: 1; bottom: 60px; border-radius: 50%; background: rgba(63,36,30,.23); filter: blur(18px); }
.page-count { position: absolute; z-index: 3; right: 10px; bottom: 75px; width: 150px; height: 150px; display: grid; place-content: center; color: var(--paper); background: var(--terracotta); border: 8px solid var(--cream); border-radius: 50%; text-align: center; }
.page-count strong { font: 500 35px/1 var(--serif); }
.page-count span { margin-top: 6px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.inside-copy h2 { max-width: 650px; }
.chapter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 35px; }
.chapter-grid div { min-height: 112px; display: grid; grid-template-columns: 35px 1fr; gap: 8px; padding: 20px 17px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,250,247,.72); box-shadow: 0 10px 30px rgba(91,53,39,.045); }
.chapter-grid span { color: var(--terracotta); font: italic 500 14px var(--serif); }
.chapter-grid p { margin: 0; font-size: 13px; line-height: 1.5; }
.text-link { display: inline-flex; gap: 10px; margin-top: 28px; color: var(--chocolate); font-size: 13px; font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--chocolate); padding-bottom: 5px; }

.shift { color: var(--paper); background: #6c4336; }
.shift h2 { color: var(--paper); }
.shift h2 em { color: #f1b9ad; }
.shift-grid { display: grid; grid-template-columns: 1fr 74px 1fr; align-items: stretch; margin-top: 50px; }
.shift-grid article { padding: 44px; border: 1px solid rgba(255,255,255,.17); border-radius: 26px; }
.shift-grid .before { background: rgba(63,36,30,.2); }
.shift-grid .after { color: var(--chocolate-dark); background: var(--blush); }
.shift-label { display: block; margin-bottom: 22px; font: 500 24px var(--serif); }
.shift-grid p { position: relative; margin: 0; padding: 16px 0 16px 28px; border-top: 1px solid rgba(255,255,255,.14); font-size: 14px; line-height: 1.55; }
.shift-grid p::before { content: "—"; position: absolute; left: 0; opacity: .7; }
.shift-grid .after p { border-color: rgba(91,53,39,.16); }
.shift-grid .after p::before { content: "✓"; color: var(--rose-dark); font-weight: 700; opacity: 1; }
.shift-arrow { display: grid; place-items: center; color: #efb7aa; font: 500 31px var(--serif); }

.for-you { background: var(--paper); }
.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.centered p:last-child { margin-inline: auto; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 45px; }
.fit-card { padding: 45px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: 0 18px 60px rgba(91,53,39,.06); }
.fit-card.yes { background: linear-gradient(145deg, #fff, #fbede8); }
.fit-card.no { background: linear-gradient(145deg, #fff, #f5eee8); }
.card-label { display: inline-block; margin-bottom: 24px; color: var(--terracotta); font: 500 24px var(--serif); }
.fit-card ul { margin: 0; padding: 0; list-style: none; }
.fit-card li { position: relative; padding: 14px 0 14px 32px; border-top: 1px solid var(--line); font-size: 14px; line-height: 1.55; }
.fit-card li::before { content: "✓"; position: absolute; left: 0; color: var(--rose-dark); font-weight: 700; }
.fit-card.no li::before { content: "—"; }

.authority { padding-bottom: 0; color: var(--paper); background: var(--chocolate-dark); }
.authority-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: end; }
.portrait { height: 650px; position: relative; overflow: hidden; border-radius: 240px 240px 0 0; background: var(--sand); }
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.authority-copy { padding: 40px 0 95px; }
.authority h2 { color: var(--paper); }
.authority-copy > p:not(.eyebrow) { max-width: 650px; color: #dbc8bf; line-height: 1.75; }
.credentials { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }
.credentials span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; color: #eadbd4; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
blockquote { margin: 34px 0 0; padding-left: 25px; border-left: 2px solid var(--rose); color: #fff; font: italic 500 24px/1.45 var(--serif); }

.proof { background: var(--blush); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.proof-grid article { padding: 38px; border: 1px solid rgba(91,53,39,.13); border-radius: 20px; background: rgba(255,250,247,.55); text-align: center; box-shadow: 0 15px 38px rgba(91,53,39,.06); }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { color: var(--chocolate); font: 500 58px/1 var(--serif); }
.proof-grid span { max-width: 250px; margin: 13px auto 0; color: #70564e; font-size: 13px; line-height: 1.5; }

.steps { background: var(--paper); }
.steps-head { max-width: 670px; }
.step-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.step-row article { min-height: 235px; padding: 35px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 15px 40px rgba(91,53,39,.055); }
.step-row article:last-child { background: var(--cream); }
.step-row span { color: var(--rose-dark); font: italic 500 20px var(--serif); }
.step-row h3 { margin: 47px 0 10px; color: var(--chocolate); font: 500 24px var(--serif); }
.step-row p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

/* SEÇÃO OFERTA REFORMULADA (REFERÊNCIA 3 CARDS - ID VISUAL PADRONIZADA) */
.offer { position: relative; overflow: hidden; color: var(--paper); background: linear-gradient(180deg, #261612 0%, #3a221b 50%, #221310 100%); }
.offer-wrapper { position: relative; z-index: 1; }
.offer-header { margin-bottom: 42px; text-align: left; }
.offer-eyebrow { margin: 0 0 10px; color: #edb7aa; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; }
.offer-title { margin: 0; color: #fffaf7; font: 500 clamp(36px, 4.2vw, 56px)/1.08 var(--serif); letter-spacing: -0.03em; max-width: 650px; }

.offer-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 440px) minmax(0, 1fr); gap: 26px; align-items: center; margin-bottom: 48px; }

/* Cards Laterais Translúcidos */
.offer-card-side { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 24px; padding: 40px 32px; backdrop-filter: blur(10px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25); color: #f7ede7; }
.offer-card-title { margin: 0 0 26px; color: #ffffff; font: 500 23px/1.2 var(--serif); }

.offer-feature-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.offer-feature-list li { display: flex; align-items: center; gap: 16px; color: #e2d1c9; font-size: 14.5px; line-height: 1.45; }

.feature-icon { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center; }
.feature-icon.check { background: rgba(183, 119, 118, 0.18); border: 1px solid rgba(223, 183, 177, 0.3); color: #f6d7cc; }
.feature-icon.check svg { width: 13px; height: 13px; }

.feature-icon.cross { background: rgba(183, 119, 118, 0.18); border: 1px solid rgba(223, 183, 177, 0.3); color: #f6d7cc; }
.feature-icon.cross svg { width: 12px; height: 12px; }

.decision-subtitle { margin: -14px 0 22px; color: #dfc9bf; font-size: 13.5px; font-weight: 500; }
.decision-alt { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.12); color: #f6d7cc; font-size: 15px; line-height: 1.5; }
.decision-alt strong { color: #ffffff; font-weight: 700; }

/* Card Central em Destaque */
.offer-card-main { background: #ffffff; border-radius: 28px; padding: 34px 32px 30px; box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35); text-align: center; color: var(--ink); position: relative; z-index: 2; border: 1px solid rgba(91, 53, 39, 0.08); }
.offer-badge-row { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.offer-discount-tag { background: linear-gradient(180deg, #b77776, #a46362); border: 1px solid #dfb7b1; color: #fff8f3; font-size: 10.5px; font-weight: 700; padding: 4px 11px; border-radius: 9999px; text-transform: uppercase; letter-spacing: 0.05em; }
.offer-discount-label { color: #a46362; font-size: 12px; font-weight: 600; }

.offer-countdown { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; }
.countdown-unit { background: #fffaf7; border: 1px solid rgba(183, 119, 118, 0.22); border-radius: 12px; padding: 8px 6px 7px; width: 62px; text-align: center; }
.countdown-val { display: block; color: var(--chocolate-dark); font-family: var(--sans); font-size: 32px; font-weight: 700; line-height: 1; letter-spacing: -0.04em; }
.countdown-label { display: block; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 5px; }
.countdown-sep { color: #b77776; font-size: 20px; font-weight: 700; line-height: 1; }

.offer-card-divider { border-bottom: 1.5px dashed rgba(91, 53, 39, 0.15); margin: 20px 0 18px; }

.offer-pricing { margin-bottom: 24px; }
.price-type { display: block; color: var(--muted); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.price-value-row { display: flex; align-items: baseline; justify-content: center; color: var(--chocolate-dark); line-height: 1; font-family: var(--serif); }
.price-currency { font-size: 24px; font-weight: 500; margin-right: 4px; color: var(--chocolate); }
.price-main-digits { font-size: 62px; font-weight: 500; letter-spacing: -0.04em; line-height: 0.95; color: var(--chocolate-dark); }
.price-decimal { font-size: 30px; font-weight: 500; color: var(--chocolate-dark); }
.price-terms { display: block; color: var(--muted); font-size: 11.5px; margin-top: 8px; }

.offer-card-main .botao-rotina { width: 100%; }
.offer-cta-sub { color: var(--muted); font-size: 11px; margin: 12px 0 18px; }

.offer-guarantee-box { background: #fbf5f2; border: 1px solid rgba(183, 119, 118, 0.2); border-radius: 16px; padding: 15px 16px; display: flex; align-items: flex-start; gap: 12px; text-align: left; margin-bottom: 18px; }
.guarantee-shield-icon { color: #a46362; flex-shrink: 0; margin-top: 2px; }
.guarantee-shield-icon svg { width: 22px; height: 22px; }
.guarantee-desc { color: #5c453d; font-size: 11.5px; line-height: 1.5; }
.guarantee-desc strong { display: block; color: var(--chocolate-dark); font-size: 12.5px; margin-bottom: 2px; }
.guarantee-desc p { margin: 0; color: var(--muted); }

.offer-card-footer { display: flex; align-items: center; justify-content: center; gap: 20px; padding-top: 14px; border-top: 1px solid rgba(91, 53, 39, 0.1); color: var(--muted); font-size: 11px; font-weight: 500; }
.card-footer-item { display: flex; align-items: center; gap: 6px; }
.card-footer-item svg { width: 14px; height: 14px; color: #a46362; }

/* Banner Inferior de Credenciais */
.offer-trust-banner { width: fit-content; max-width: 100%; margin: 0 auto; background: #ffffff; border-radius: 9999px; padding: 14px 34px; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 35px rgba(63, 36, 30, 0.18); color: var(--ink); border: 1px solid rgba(91, 53, 39, 0.1); }
.trust-banner-col { display: flex; align-items: center; gap: 12px; }
.trust-banner-icon { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.trust-banner-icon.medal { background: #fbf2ed; color: #a46362; border: 1px solid rgba(183, 119, 118, 0.25); }
.trust-banner-icon svg { width: 18px; height: 18px; }
.trust-banner-info { display: flex; flex-direction: column; text-align: left; }
.trust-banner-info small { color: #a46362; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.trust-banner-info strong { color: var(--chocolate-dark); font-size: 12px; font-weight: 700; letter-spacing: 0.02em; }

.faq { background: var(--cream); }
.faq-shell { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }
.accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; cursor: pointer; color: var(--chocolate); font-size: 15px; font-weight: 600; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { font: 400 25px/1 var(--serif); transition: transform .25s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 650px; padding: 0 45px 23px 0; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.final-cta { position: relative; overflow: hidden; padding: 110px 0; text-align: center; background: var(--paper); }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 340px; height: 340px; border: 1px solid var(--line); border-radius: 50%; }
.final-cta::before { left: -170px; bottom: -170px; }
.final-cta::after { right: -150px; top: -170px; }
.final-cta .shell { position: relative; z-index: 1; }
.monogram { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 28px; border: 1px solid var(--terracotta); border-radius: 50%; color: var(--chocolate); font: 500 26px var(--serif); }
.final-cta p { color: var(--muted); margin-bottom: 28px; }

footer { padding: 55px 0 28px; color: #dbc8bf; background: var(--chocolate-dark); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-brand .brand-mark { color: var(--paper); border-color: rgba(255,255,255,.35); }
.footer-brand b { color: var(--paper); }
.footer-brand small { color: #c9aaa0; }
footer nav { display: flex; flex-wrap: wrap; gap: 22px; }
footer nav a { font-size: 11px; text-decoration: none; }
.legal { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 9px; line-height: 1.6; opacity: .75; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } .ticker div { animation: none; } }

@media (max-width: 920px) {
  .section { padding: 84px 0; }
  .hero { min-height: auto; }
  .hero { background-position: center center; }
  .hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(247,240,231,.94) 0%, rgba(247,240,231,.82) 52%, rgba(247,240,231,.08) 100%); }
  .hero-content { min-height: 720px; grid-template-columns: 65% 35%; }
  .hero .hero-content.shell { width: calc(100% - 44px); }
  .hero-copy { width: calc(100% - 32px); max-width: 620px; margin-left: 32px; padding-top: 35px; }
  .recognition-grid, .inside-grid, .authority-grid, .offer-grid, .faq-shell { grid-template-columns: 1fr; gap: 40px; }
  .offer-card-side, .offer-card-main { max-width: 480px; width: 100%; margin-inline: auto; }
  .offer-trust-banner { flex-direction: column; gap: 14px; border-radius: 20px; padding: 18px 24px; width: 100%; max-width: 480px; }
  .trust-banner-sep { width: 100%; height: 1px; }
  .method-line { grid-template-columns: 1fr 1fr; }
  .portrait { max-width: 580px; height: 640px; }
  .authority-copy { padding-top: 0; }
  .faq-shell { gap: 20px; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 32px, 1180px); }
  .announcement { height: 30px; font-size: 8px; gap: 7px; letter-spacing: .08em; }
  .announcement span { display: none; }
  .hero .hero-content.shell { width: calc(100% - 32px); }
  .brand-mark { width: 38px; height: 38px; }
  .hero { background-image: none; }
  .hero::before { display: none; }
  .hero::after { opacity: .72; background: linear-gradient(180deg, var(--cream), rgba(247,240,231,.7)); }
  .hero-content { min-height: auto; display: block; padding-bottom: 0; }
  .hero-visual { min-height: 480px; margin: 10px -16px 0; overflow: hidden; background: #f3dfd5 url("../images/hero-laura.webp") center center/cover no-repeat; border-radius: 180px 180px 0 0; }
  .hero-signature { right: 2px; bottom: 9px; }
  .hero-copy { padding: 58px 0 0; }
  .hero-copy { width: 100%; margin-left: 0; }
  .hero-logo { width: 230px; margin-bottom: 26px; }
  h1 { font-size: clamp(45px, 14vw, 62px); }
  .hero-lead { font-size: 25px; }
  .hero-body { font-size: 15px; }
  .routine-button { min-height: 60px; padding-inline: 22px; font-size: 14px; }
  .scroll-cue { display: none; }
  .section { padding: 72px 0; }
  h2 { font-size: 39px; }
  .method::before { font-size: 120px; }
  .method-line { grid-template-columns: 1fr; }
  .inside-grid { gap: 35px; }
  .book-stage { min-height: 490px; }
  .book-stage::before { width: 340px; height: 340px; }
  .book-stage::after { width: 270px; height: 270px; }
  .book-stage img { width: 250px; height: auto; aspect-ratio: 719 / 1024; }
  .page-count { width: 122px; height: 122px; right: -3px; bottom: 35px; }
  .chapter-grid, .fit-grid, .proof-grid, .step-row { grid-template-columns: 1fr; }
  .shift-grid { grid-template-columns: 1fr; }
  .shift-grid article { padding: 30px 24px; }
  .shift-arrow { min-height: 62px; transform: rotate(90deg); }
  .fit-card { padding: 32px 25px; }
  .proof-grid article, .step-row article { border-right: 1px solid rgba(91,53,39,.13); }
  .portrait { height: 500px; }
  .offer-header { margin-bottom: 30px; }
  .offer-card-side { padding: 30px 20px; }
  .offer-card-main { padding: 30px 16px 22px; }
  .countdown-unit { width: 56px; padding: 7px 4px 6px; }
  .countdown-val { font-size: 26px; }
  .price-main-digits { font-size: 50px; }
  .offer-card-main .botao-rotina { font-size: 15px; min-height: 56px; padding: 12px 18px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  footer nav { flex-direction: column; gap: 12px; }
  .mobile-cta { position: fixed; z-index: 18; right: 12px; bottom: 12px; left: 12px; display: block; padding: 15px 20px; border: 2px solid #dfb7b1; border-radius: 999px; color: #fff8f3; background: linear-gradient(180deg, #b77776, #a46362); box-shadow: 0 8px 24px rgba(91,50,49,.38); text-align: center; text-decoration: none; font-family: Arial, sans-serif; font-size: 14px; font-weight: 700; transition: opacity .2s ease, transform .2s ease; }
  .mobile-cta.hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
  body { padding-bottom: 72px; }
}
