/* Meditação Emocional — sistema visual aprovado em 07/09/2026. */

@font-face {
  font-family:Manrope;
  src:url('./assets/fonts/manrope-latin-variable.woff2') format('woff2');
  font-weight:400 800;
  font-display:swap;
}

@font-face {
  font-family:Cormorant;
  src:url('./assets/fonts/cormorant-garamond-latin-variable.woff2') format('woff2');
  font-weight:500 700;
  font-display:swap;
}

:root {
  --paper:#f4efe6;
  --flax:#dbd4c2;
  --sage:#8c8773;
  --rose:#ae927a;
  --gold:#c79a2e;
  --ink:#443c36;
  --muted:#655d52;
  --line:rgba(68,60,54,.2);
  --content:1200px;
  --gutter:clamp(22px,5vw,80px);
  --section:clamp(64px,7vw,112px);
  --radius:12px;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:24px;
}

body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:Manrope,sans-serif;
  font-size:16px;
  line-height:1.75;
}

img {
  display:block;
  max-width:100%;
  height:auto;
}

a {
  color:inherit;
}

p,h1,h2,h3,ul {
  margin-top:0;
}

p {
  margin-bottom:18px;
}

h1,h2 {
  font-family:Cormorant,Georgia,serif;
  font-weight:500;
  letter-spacing:-.035em;
  text-wrap:balance;
}

h1 {
  font-size:clamp(42px,4.5vw,68px);
  line-height:1.04;
  margin-bottom:24px;
}

h2 {
  font-size:clamp(36px,3.5vw,52px);
  line-height:1.1;
  margin-bottom:0;
}

h3 {
  font-size:20px;
  line-height:1.4;
  font-weight:700;
  margin-bottom:12px;
}

a:focus-visible,summary:focus-visible {
  outline:3px solid #785311;
  outline-offset:6px;
}

::selection {
  background:var(--flax);
}

.brand-bar {
  max-width:calc(var(--content) + 2*var(--gutter));
  margin:auto;
  display:flex;
  align-items:center;
  gap:12px;
  padding:18px var(--gutter);
  border-bottom:1px solid var(--line);
}

.hero__logo-badge {
  width:52px;
  flex-shrink:0;
}

.brand-name {
  font-size:14px;
  font-weight:700;
  letter-spacing:.06em;
}

.hero {
  max-width:calc(var(--content) + 2*var(--gutter));
  margin:auto;
  padding:64px var(--gutter) 76px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.08fr);
  column-gap:56px;
  row-gap:24px;
  align-items:center;
  grid-template-areas:'content visual' 'actions visual';
}

.hero__content {
  grid-area:content;
  align-self:end;
}

.hero__lead {
  max-width:52ch;
  color:var(--muted);
  font-size:17px;
  line-height:1.8;
  margin:0;
}

.hero__visual {
  grid-area:visual;
  align-self:center;
}

.hero__visual img {
  width:100%;
  border-radius:12px;
  aspect-ratio:4/3;
  object-fit:contain;
  background:var(--flax);
}

.hero__actions {
  grid-area:actions;
  align-self:start;
}

.hero__benefits {
  list-style:none;
  padding:0;
  margin:24px 0 0;
  display:grid;
  gap:8px;
  color:var(--muted);
  font-size:14px;
}

.hero__benefits li:before {
  content:'✓';
  margin-right:10px;
  color:#706340;
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  min-height:54px;
  max-width:100%;
  padding:15px 24px;
  border:1px solid transparent;
  border-radius:6px;
  text-decoration:none;
  font-size:15px;
  line-height:1.5;
  font-weight:800;
  text-align:center;
  transition:background .18s,transform .18s;
}

.button:after {
  content:'↗';
  font-size:20px;
  font-weight:500;
  flex-shrink:0;
}

.button--primary,.button--checkout {
  background:var(--gold);
  color:#322a1d;
}

.button--primary:hover,.button--checkout:hover {
  background:#d4aa42;
  transform:translateY(-2px);
}

.button--secondary {
  background:transparent;
  border-color:var(--ink);
  color:var(--ink);
}

.button--secondary:hover {
  background:var(--flax);
}

main>.section {
  padding:var(--section) max(var(--gutter),calc((100vw - var(--content))/2));
  border-top:1px solid var(--line);
}

.section-heading {
  max-width:820px;
  margin-bottom:40px;
}

.section-kicker {
  font-size:14px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:20px;
}

.section--tone-flax {
  background:#e9e3d6;
}

.section--tone-sage {
  background:#dcded0;
}

.section--tone-rose {
  background:#f0e3d7;
}

.section--tone-golden-rose {
  background:#e7d5c0;
}

.section--tone-flax-sage {
  background:#e5e3d7;
}

.section--tone-offer {
  background:var(--ink);
  color:var(--paper);
}

.section--tone-rose-story {
  background:#ebdfd1;
}

.section--tone-sage-light {
  background:#e6e5d9;
}

.reading-section {
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);
  gap:0 88px;
  align-items:start;
}

.reading-section>.section-heading {
  grid-column:1;
  grid-row:1 / span 2;
  position:sticky;
  top:40px;
  margin:0;
}

.reading-section>.text-flow {
  grid-column:2;
  max-width:66ch;
}

.reading-section>.button {
  grid-column:2;
  justify-self:start;
  margin-top:28px;
}

.text-flow p:last-child {
  margin-bottom:0;
}

.text-flow__chapter {
  padding:0 0 32px;
  border-bottom:1px solid var(--line);
  margin-bottom:32px;
}

.text-flow__chapter:last-child {
  padding-bottom:0;
  border:0;
  margin-bottom:0;
}

.text-flow__microtitle {
  font-size:15px;
  line-height:1.5;
  font-weight:800;
  margin-bottom:20px;
  color:#5b513c;
}

.quote-list {
  list-style:none;
  margin:20px 0;
  padding-left:22px;
  border-left:2px solid var(--sage);
  font-family:Cormorant,Georgia,serif;
  font-size:26px;
  line-height:1.3;
  font-style:italic;
}

.quote-list li+li {
  margin-top:14px;
}

.highlight-copy {
  font-size:18px;
  line-height:1.6;
}

.highlight-copy u {
  text-decoration-thickness:1px;
  text-underline-offset:5px;
}

.offer-content__text>.text-flow {
  max-width:720px;
  margin-bottom:44px;
}

.product-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:40px 32px;
  margin:40px 0;
}

.product-card {
  display:flex;
  flex-direction:column;
  min-width:0;
}

.product-card__media {
  order:-1;
  margin-bottom:24px;
}

.product-card__media img {
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  border-radius:var(--radius);
}

.product-card h3 {
  max-width:30ch;
}

.product-card p {
  max-width:56ch;
  margin-bottom:0;
}

.feature-list {
  list-style:none;
  padding:0;
  margin:18px 0;
  display:grid;
  gap:8px;
}

.feature-list li:before {
  content:'✓';
  margin-right:10px;
}

.section-note {
  max-width:720px;
}

.section-note+.button,.text-flow+.button {
  margin-top:24px;
}

.section--offer-content>.button {
  margin-top:20px;
}

.video-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  max-width:900px;
  margin:40px auto;
  scroll-margin-top:24px;
}

.video-card {
  display:block;
  position:relative;
  min-width:0;
  aspect-ratio:4/5;
  overflow:hidden;
  isolation:isolate;
  border-radius:var(--radius);
  color:#fff;
  background:var(--ink);
  text-decoration:none;
  -webkit-tap-highlight-color:transparent;
}

.video-card img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.video-card::after {
  content:'';
  position:absolute;
  inset:35% 0 0;
  z-index:0;
  background:linear-gradient(transparent,rgba(34,29,25,.3) 35%,rgba(34,29,25,.94));
}

.video-card__play {
  position:absolute;
  z-index:1;
  left:50%;
  bottom:78px;
  transform:translateX(-50%);
  display:grid;
  place-items:center;
  width:68px;
  height:48px;
  border:0;
  border-radius:12px;
  background:#e62117;
  box-shadow:0 3px 12px rgba(0,0,0,.24);
  color:#fff;
  transition:background .15s;
}

.video-card__play svg { display:block; width:100%; height:100%; }

.video-card__name {
  position:absolute;
  z-index:1;
  inset:auto 16px 18px;
  font-size:20px;
  font-weight:700;
  line-height:1.3;
  text-wrap:balance;
}

.video-card:hover .video-card__play,
.video-card:focus-visible .video-card__play { background:#ff0000; }
.video-card:focus-visible { outline:3px solid var(--ink); outline-offset:5px; }

.testimonial-dialog {
  width:min(960px,calc(100% - 24px));
  max-height:calc(100dvh - 24px);
  padding:0;
  border:0;
  border-radius:12px;
  background:var(--paper);
  color:var(--ink);
  overflow:auto;
  box-shadow:0 24px 90px rgba(0,0,0,.3);
}

.testimonial-dialog::backdrop { background:rgba(20,18,15,.8); }

.testimonial-dialog__header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 18px;
}

.testimonial-dialog__header h2 {
  margin:0;
  font:700 18px/1.4 Manrope,sans-serif;
  letter-spacing:normal;
}

.testimonial-dialog__close {
  display:flex;
  flex:none;
  align-items:center;
  gap:10px;
  min-height:48px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:6px;
  background:var(--paper);
  color:var(--ink);
  font:700 18px/1.3 Manrope,sans-serif;
  cursor:pointer;
}

.testimonial-dialog__close span { font-size:26px; }
.testimonial-dialog__close:focus-visible { outline:3px solid var(--ink); outline-offset:2px; }
.testimonial-dialog__player { aspect-ratio:16/9; background:#161412; }
.testimonial-dialog__player iframe { display:block; width:100%; height:100%; border:0; }

@media (max-height:500px) and (orientation:landscape) {
  .testimonial-dialog { width:min(960px,calc((100dvh - 110px)*16/9)); }
}

.section:has(.video-grid)>.text-flow {
  max-width:740px;
}

.bonus-grid {
  margin:48px 0;
}

.bonus-card {
  display:grid;
  grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
  align-items:center;
  gap:48px;
  padding:32px 0;
  border-top:1px solid var(--line);
}

.bonus-card>img {
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  border-radius:var(--radius);
}

.bonus-card__body {
  max-width:62ch;
}

.bonus-card h3 {
  font-family:Cormorant,Georgia,serif;
  font-size:32px;
  font-weight:600;
  line-height:1.12;
}

.bonus-card p {
  margin-bottom:12px;
}

.bonus-card p:last-of-type {
  font-size:14px;
  color:var(--muted);
}

.price-tag {
  display:flex;
  align-items:center;
  gap:12px;
}

.price-tag span {
  text-decoration:line-through;
  color:var(--muted);
  font-size:14px;
}

.price-tag strong {
  font-size:18px;
}

.bonus-total-anchor {
  padding:28px 0;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
}

.bonus-total-anchor__label {
  max-width:52ch;
}

.bonus-total-anchor__prices {
  display:flex;
  gap:16px;
  align-items:baseline;
  flex-wrap:wrap;
}

.bonus-total-anchor__old {
  text-decoration:line-through;
  color:var(--muted);
}

.bonus-total-anchor__new {
  font-size:24px;
}

.checkout-note {
  font-size:14px;
  line-height:1.6;
  margin-top:16px;
  max-width:60ch;
}

.section--offer .section-heading {
  max-width:760px;
}

.section--offer .section-kicker {
  color:#d2c5ae;
}

.offer-layout {
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
  gap:64px;
  align-items:start;
}

.offer-inclusions>.card-frame {
  margin-bottom:32px;
}

.offer-inclusions img {
  width:100%;
  border-radius:var(--radius);
}

.offer-list {
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:0;
}

.offer-list li {
  display:flex;
  gap:14px;
  padding:11px 0;
  border-bottom:1px solid rgba(244,239,230,.16);
}

.offer-list li:before {
  content:'✓';
  color:#d9b967;
  flex-shrink:0;
}

.offer-panel {
  background:var(--paper);
  color:var(--ink);
  padding:32px;
  border-radius:var(--radius);
  display:grid;
  gap:24px;
}

.offer-value-summary h3 {
  font-size:16px;
}

.offer-value-summary__rows p {
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:14px;
  margin:0;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}

.offer-value-summary__rows strong {
  white-space:nowrap;
}

.offer-value-summary__total {
  font-weight:800;
}

.price-box {
  display:grid;
  gap:10px;
  text-align:center;
}

.price-box__label {
  font-size:14px;
}

.price-box__installments {
  display:flex;
  justify-content:center;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
  line-height:1.1;
}

.price-box__installments-prefix {
  font-size:18px;
  font-weight:500;
}

.price-box__installments-value {
  font-family:Cormorant,Georgia,serif;
  font-size:72px;
  font-weight:600;
  letter-spacing:-.04em;
}

.price-box__cash {
  font-size:17px;
}

.price-box__terms {
  font-size:14px;
  color:var(--muted);
}

.offer-panel>.button {
  width:100%;
}

.offer-panel>.checkout-note {
  margin:-12px 0 0;
  text-align:center;
}

.trust-badges {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  text-align:center;
}

.trust-badge img {
  width:64px;
  height:64px;
  object-fit:contain;
  margin:0 auto 8px;
}

.trust-badge small {
  font-size:12px;
  line-height:1.4;
  display:block;
}

.guarantee-box {
  border-top:1px solid var(--line);
  padding-top:24px;
}

.guarantee-box__seal {
  width:80px;
  float:left;
  margin:0 16px 8px 0;
}

.guarantee-box h3 {
  font-size:17px;
}

.guarantee-box p {
  font-size:14px;
  line-height:1.7;
  margin:0;
}

.creator-layout {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:64px;
  align-items:start;
}

.creator-visual {
  position:sticky;
  top:40px;
}

.creator-visual img {
  border-radius:var(--radius);
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  object-position:57% center;
}

.section--creator-story>.button {
  margin-top:32px;
}

.section--faq {
  display:grid;
  grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
  gap:64px;
}

.faq-list {
  min-width:0;
}

.faq-list details {
  padding:20px 0;
  border-top:1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom:1px solid var(--line);
}

.faq-list summary {
  cursor:pointer;
  font-size:16px;
  line-height:1.65;
  font-weight:700;
  list-style:none;
  display:flex;
  justify-content:space-between;
  gap:24px;
}

.faq-list summary::-webkit-details-marker {
  display:none;
}

.faq-list summary:after {
  content:'+';
  font-size:24px;
  line-height:1;
  flex-shrink:0;
  font-weight:400;
}

.faq-list details[open] summary:after {
  content:'−';
}

.faq-list details p {
  margin:18px 0 0;
  color:var(--muted);
}

.footer {
  padding:56px var(--gutter);
  max-width:1360px;
  margin:auto;
  font-size:14px;
  color:var(--muted);
}

.footer-contact-copy {
  font-size:24px;
  font-family:Cormorant,Georgia,serif;
  color:var(--ink);
}

.footer-contact-actions {
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  margin-bottom:32px;
}

.footer a {
  text-underline-offset:4px;
}

.footer-whatsapp[aria-disabled=true] {
  opacity:.55;
  cursor:not-allowed;
}

.footer-meta {
  margin-bottom:8px;
}

.footer-disclaimer {
  max-width:90ch;
  font-size:12px;
}

.footer-links {
  display:flex;
  flex-wrap:wrap;
  gap:24px;
}

@media(min-width:1700px) {
  .hero {
    padding-top:80px;
    padding-bottom:96px;
  }
}

@media(max-width:1100px) {
  .hero {
    column-gap:32px;
  }
  h1 {
    font-size:52px;
  }
  .reading-section {
    gap:0 40px;
  }
  .offer-layout,.creator-layout,.section--faq {
    gap:36px;
  }
  .offer-panel {
    padding:24px;
  }
  .bonus-card {
    gap:32px;
  }
  .video-grid {
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
  }
}

@media(max-width:900px) {
  .hero {
    grid-template-columns:1fr;
    grid-template-areas:'content' 'visual' 'actions';
    padding-top:40px;
    max-width:760px;
    gap:28px;
  }
  .hero__content {
    text-align:center;
  }
  .hero__lead {
    margin-inline:auto;
  }
  .hero h1 {
    font-size:clamp(40px,6.5vw,56px);
  }
  .hero__visual {
    width:100%;
    max-width:640px;
    margin:auto;
  }
  .hero__visual img {
    aspect-ratio:16/9;
    border-radius:60px 60px 10px 10px;
    object-fit:contain;
  }
  .hero__actions {
    text-align:center;
  }
  .hero__benefits {
    justify-content:center;
  }
  .reading-section {
    grid-template-columns:1fr;
    gap:32px;
  }
  .reading-section>.section-heading {
    position:static;
    grid-row:auto;
    grid-column:auto;
    max-width:720px;
  }
  .reading-section>.text-flow,.reading-section>.button {
    grid-column:auto;
  }
  .reading-section>.text-flow {
    max-width:100%;
  }
  .reading-section>.button {
    margin-top:0;
  }
  .offer-layout {
    grid-template-columns:1fr;
  }
  .offer-inclusions>.card-frame {
    max-width:700px;
  }
  .offer-panel {
    max-width:640px;
    width:100%;
    margin:auto;
    padding:32px;
  }
  .creator-layout {
    grid-template-columns:1fr;
  }
  .creator-visual {
    position:static;
    max-width:720px;
  }
  .creator-visual img {
    aspect-ratio:16/9;
  }
  .section--faq {
    grid-template-columns:1fr;
    gap:0;
  }
  .section-heading {
    max-width:720px;
  }
  .bonus-card {
    grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
    gap:24px;
  }
  .bonus-card h3 {
    font-size:28px;
  }
}

@media(max-width:600px) {
  :root {
    --gutter:22px;
    --section:56px;
  }
  body {
    line-height:1.75;
  }
  .brand-bar {
    padding-block:12px;
  }
  .hero__logo-badge {
    width:42px;
  }
  .brand-name {
    font-size:13px;
  }
  .hero {
    padding-top:32px;
    padding-bottom:48px;
    gap:24px;
  }
  .hero h1 {
    font-size:42px;
  }
  .hero__lead {
    font-size:16px;
  }
  .hero__visual img {
    border-radius:40px 40px 8px 8px;
  }
  .hero__benefits {
    font-size:13px;
    text-align:left;
    gap:10px;
  }
  .button {
    width:100%;
    font-size:14px;
    padding:15px 18px;
    gap:12px;
  }
  h2 {
    font-size:36px;
    line-height:1.12;
  }
  .section-kicker {
    font-size:12px;
    letter-spacing:.08em;
    margin-bottom:16px;
  }
  .section-heading {
    margin-bottom:28px;
  }
  .reading-section {
    gap:28px;
  }
  .text-flow__microtitle {
    font-size:14px;
  }
  .quote-list {
    font-size:24px;
  }
  .product-grid {
    grid-template-columns:1fr;
    gap:36px;
    margin:32px 0;
  }
  .product-card__media {
    margin-bottom:18px;
  }
  .product-card h3 {
    font-size:20px;
  }
  .video-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    margin:28px 0;
  }
  .video-card__name { font-size:18px; inset:auto 12px 12px; }
  .video-card__play { bottom:68px; }
  .testimonial-dialog__header { padding:10px 12px; }
  .bonus-grid {
    margin:28px 0;
  }
  .bonus-card {
    grid-template-columns:1fr;
    gap:20px;
    padding:28px 0;
  }
  .bonus-card h3 {
    font-size:30px;
  }
  .bonus-total-anchor {
    align-items:flex-start;
    flex-direction:column;
    gap:14px;
  }
  .offer-layout {
    gap:32px;
  }
  .offer-panel {
    padding:24px 20px;
  }
  .price-box__installments-value {
    font-size:64px;
  }
  .offer-list {
    font-size:15px;
  }
  .creator-layout {
    gap:28px;
  }
  .footer {
    padding-block:40px;
  }
  .footer-contact-actions {
    flex-direction:column;
    gap:16px;
  }
  .faq-list details {
    padding:18px 0;
  }
  .faq-list summary {
    font-size:15px;
    gap:16px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  .button {
    transition:none;
  }
  .button:hover {
    transform:none;
  }
}


/* Celulares baixos: priorizar o CTA sem cortar a descrição aprovada. */
@media (max-width: 600px) and (max-height: 900px) {
  .hero {
    grid-template-areas: 'content' 'cta' 'visual' 'benefits';
    padding-top: 24px;
    gap: 20px;
  }
  .hero__actions { display: contents; }
  .hero__actions > .button { grid-area: cta; }
  .hero__benefits { grid-area: benefits; margin-top: 0; }
  .hero h1 { font-size: 36px; margin-bottom: 18px; }
  .hero__lead { line-height: 1.65; }
}

/* Descrição da hero: promessa e diferenciais em dois blocos. */
.hero__lead p { margin: 0; }
.hero__lead p + p { margin-top: 14px; }
.hero__lead strong { font-weight: 750; color: var(--ink); }
@media (max-width: 900px) {
  .hero__lead { text-align: left; }
}
@media (max-width: 360px) and (max-height: 600px) {
  .hero { padding-top: 16px; gap: 16px; }
}
@media (max-width: 360px) and (max-height: 600px) {
  .hero { padding-inline: 16px; }
  .hero h1 { font-size: 32px; margin-bottom: 14px; }
}

/* Leitura confortável e hierarquia para o público 50+. */
.button {
  font-size: 1.125rem;
  min-height: 60px;
  line-height: 1.45;
}
.section-kicker {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: .025em;
  text-transform: none;
}
.reading-section > .text-flow {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 62ch;
}
.reading-group + .reading-group {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 28px;
}
.reading-group h3 {
  font-size: 1.375rem;
  line-height: 1.4;
  margin-bottom: 18px;
  text-wrap: balance;
}
.reading-group p:last-child { margin-bottom: 0; }
.hero__benefits { font-size: 1rem; }
.faq-list summary { font-size: 1.125rem; }
.footer-contact-actions { align-items: flex-start; }
.footer-whatsapp {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: var(--ink);
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
}
.footer-whatsapp:hover { background: var(--flax); }
.footer-email, .footer-links { font-size: 1rem; }
@media (max-width: 600px) {
  .reading-group + .reading-group { margin-top: 28px; padding-top: 24px; }
  .reading-group h3 { font-size: 1.25rem; }
}

/* Valores com algarismos simples e alinhados. */
.price-box__installments-value {
  font-family: Manrope, sans-serif;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 800;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.offer-value-summary, .price-box, .price-tag, .bonus-total-anchor__prices {
  font-variant-numeric: lining-nums tabular-nums;
}
/* Selo e título na mesma linha; explicação sempre em largura total. */
.guarantee-box {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}
.guarantee-box__seal {
  float: none;
  width: 64px;
  height: 64px;
  margin: 0;
  object-fit: contain;
}
.guarantee-box h3 {
  font-size: 1.125rem;
  line-height: 1.5;
  margin: 0;
}
.guarantee-box p {
  grid-column: 1 / -1;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  text-wrap: pretty;
}
.faq-list details p {
  font-size: 1.125rem;
  line-height: 1.75;
}
