﻿:root {
  --cream: #f8f3eb;
  --cream-2: #f2eee5;
  --green: #4c6040;
  --green-dark: #35432f;
  --sage: #dfe3d6;
  --ink: #283126;
  --line: #d8d1c5;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.header {
  width: min(100%, 1440px);
  height: 76px;
  margin: auto;
  padding: 0 7.8%;
  display: grid;
  grid-template-columns: 210px 1fr 132px;
  align-items: center;
  gap: 25px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 10;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  transform: translateY(4px);
}
.logo img {
  width: 135px;
  height: 62px;
  object-fit: contain;
  object-position: center;
}
.logo-leaf {
  color: var(--green);
  font-size: 33px;
  line-height: 1;
  transform: rotate(-24deg);
}
.logo strong {
  display: block;
  font: 500 25px/.85 var(--serif);
}
.logo small {
  display: block;
  margin-top: 8px;
  font-size: 6px;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
}
.nav { display: flex; justify-content: center; gap: 34px; }
.nav a {
  padding: 8px 0;
  font-size: 8px;
  text-transform: uppercase;
}
.nav .active { border-bottom: 1px solid var(--ink); }
.schedule {
  padding: 12px 15px;
  color: #fff;
  background: var(--green);
  border-radius: 4px;
  font-size: 9px;
  text-align: center;
  text-transform: uppercase;
}
.whatsapp { font-size: 15px; vertical-align: -1px; }
.menu-button { display: none; }

main { max-width: 1440px; margin: auto; }
.hero {
  height: 410px;
  display: grid;
  grid-template-columns: 46% 54%;
  grid-template-rows: 1fr auto;
  background: #faf6ef;
  overflow: hidden;
}
.hero-copy {
  grid-column: 1;
  grid-row: 1;
  padding: 100px 0 0 72px;
  position: relative;
  z-index: 2;
}
.hero-photo { grid-column: 2; grid-row: 1 / 3; }
.hero .benefits { grid-column: 1; grid-row: 2; margin-left: 72px; margin-bottom: 30px; }
.hero h1 {
  margin: 0 0 10px;
  font: 500 clamp(53px, 5.7vw, 75px)/.86 var(--serif);
  letter-spacing: -.025em;
}
.hero h1 em { color: var(--green); font-weight: 500; }
.hero-copy > p { margin: 0 0 13px; font-size: 9px; line-height: 1.35; }
.button {
  display: inline-block;
  padding: 12px 22px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 5px 16px rgba(76, 96, 64, .22);
}
.button span { margin-left: 8px; font-size: 14px; }
.hero-photo {
  background:
    linear-gradient(90deg, #faf6ef 0 8%, rgba(250,246,239,.9) 15%, rgba(250,246,239,.35) 24%, transparent 34%),
    url("assets/hero-mulher-conforto-ai.png") 72% center/cover no-repeat;
  background-size: auto, cover;
  background-position: left center, 72% center;
  background-repeat: no-repeat;
}
.benefits {
  width: min(100%, 380px);
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}
.benefits article {
  min-width: 0;
  min-height: 64px;
  padding: 6px 5px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border: 1px solid rgba(76, 96, 64, .14);
  border-radius: 8px;
  background: rgba(255, 252, 247, .72);
}
.benefits svg { width: 28px; height: 28px; margin: 0 auto 4px; color: var(--green); display: block; }
.benefits span { font-size: 5.8px; line-height: 1.25; text-transform: uppercase; }

.authority {
  padding: 16px 6.8%;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: var(--cream-2);
}
.authority h2 {
  margin: 5px 0 7px;
  font: 500 25px/.95 var(--serif);
}
.authority-copy p {
  max-width: 420px;
  margin: 0;
  font-size: 7px;
  line-height: 1.55;
}
.authority-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.authority-points article {
  min-height: 82px;
  padding: 12px 11px;
  border: 1px solid rgba(76, 96, 64, .2);
  border-radius: 8px;
  background: rgba(250, 247, 240, .62);
}
.authority-points strong {
  display: block;
  color: var(--green);
  font: 500 27px/.85 var(--serif);
}
.authority-points span {
  display: block;
  margin-top: 6px;
  font-size: 6.4px;
  line-height: 1.45;
  text-transform: uppercase;
}

.services {
  padding: 10px 6.8% 13px;
  border-top: 1px solid var(--line);
  background: #fbf8f3;
}
.section-title { text-align: center; }
.section-title h2 {
  margin: 0;
  font: 500 22px/1 var(--serif);
  text-transform: uppercase;
}
.section-title p { margin: 3px 0 7px; font-size: 7px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service {
  min-height: 100%;
  padding: 0 0 11px;
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(76, 96, 64, .13);
  border-radius: 8px;
  background: rgba(255, 252, 247, .76);
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.service:hover,
.service:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(76, 96, 64, .32);
  box-shadow: 0 15px 34px rgba(64, 50, 37, .08);
}
.service:focus-visible { outline: 2px solid rgba(76, 96, 64, .42); outline-offset: 3px; }
.service-photo {
  width: 100%;
  height: 134px;
  display: block;
  overflow: hidden;
  clip-path: none;
}
.service-photo img {
  width: 100%;
  height: 132%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  clip-path: none;
}
.service-seal {
  width: 43px;
  height: 43px;
  margin: -22px auto 4px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  border: 0;
  background: #faf7f0;
  box-shadow: none;
  color: var(--green);
  font: 21px/1 var(--serif);
  z-index: 2;
  clip-path: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.service h3 {
  margin: 0 0 3px;
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
}
.service p {
  max-width: 190px;
  margin: 0 auto;
  font-size: 6.2px;
  line-height: 1.38;
}
.service-link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 17px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(76, 96, 64, .18);
  transition: background-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.service-link::after {
  content: ">";
  font-size: 10px;
  line-height: 1;
  transition: transform .22s ease;
}
.service:hover .service-link,
.service:focus-visible .service-link {
  background: var(--green-dark);
  box-shadow: 0 9px 20px rgba(76, 96, 64, .3);
}
.service:hover .service-link::after,
.service:focus-visible .service-link::after {
  transform: translateX(3px);
}

.facial-care {
  height: 210px;
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: stretch;
  background: #f9f5ee;
  border-top: 1px solid var(--line);
}
.facial-photo {
  overflow: hidden;
}
.facial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.facial-copy {
  padding: 34px 8% 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.facial-copy h2 {
  max-width: 520px;
  margin: 5px 0 10px;
  font: 500 31px/.92 var(--serif);
}
.facial-copy p {
  max-width: 560px;
  margin: 0;
  font-size: 7.2px;
  line-height: 1.62;
}
.clay-options,
.care-steps {
  max-width: 520px;
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.clay-options span,
.care-steps span {
  padding: 6px 9px;
  border: 1px solid rgba(76, 96, 64, .22);
  border-radius: 999px;
  background: rgba(250, 247, 240, .68);
  color: var(--green-dark);
  font-size: 6px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about {
  height: 196px;
  display: grid;
  grid-template-columns: 46% 54%;
  background: var(--sage);
}
.about-copy { padding: 20px 6% 15px 72px; position: relative; }
.about-copy::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 110px;
  background: url("assets/folhas-sobre-transparente-v3.png") left bottom / 58px 110px no-repeat;
  opacity: .72;
  pointer-events: none;
}
.kicker { font-size: 7px; letter-spacing: .05em; text-transform: uppercase; }
.about h2 {
  margin: 5px 0 7px;
  font: 500 25px/.9 var(--serif);
}
.about-copy p { max-width: 410px; margin: 0 0 8px; font-size: 6.5px; line-height: 1.48; }
.about-photo { height: 196px; position: relative; overflow: hidden; }
.about-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.passion-badge {
  width: 92px;
  height: 92px;
  display: grid;
  place-content: center;
  position: absolute;
  right: 10%;
  top: 16px;
  border-radius: 55% 45% 52% 48%;
  text-align: center;
  background: rgba(250,246,239,.92);
}
.passion-badge span { color: var(--green); font: 20px var(--serif); }
.passion-badge p { margin: 2px 0 0; font-size: 6px; line-height: 1.4; text-transform: uppercase; }

.feature {
  min-height: 214px;
  padding: 18px 7%;
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) minmax(210px, 31%);
  gap: 22px;
  align-items: center;
  background: #f9f5ee;
}
.section-anchor {
  position: absolute;
  top: -74px;
}
.feature-portrait {
  width: 170px;
  height: 174px;
  border-radius: 7px;
  object-fit: cover;
  object-position: center 20%;
}
.feature-copy h2 { margin: 4px 0 0; font: 500 23px/.9 var(--serif); }
.feature-copy h3 { margin: 3px 0 6px; font: 500 16px/1 var(--serif); }
.feature-copy p { max-width: 360px; margin: 0 0 7px; font-size: 6.4px; line-height: 1.5; }
.feature-magazine { width: 100%; max-height: 168px; object-fit: cover; }
.feature-note {
  min-height: 122px;
  padding: 19px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(76, 96, 64, .22);
  color: var(--green-dark);
}
.feature-note strong {
  font: 500 25px/.94 var(--serif);
}
.feature-note p {
  max-width: 265px;
  margin: 10px 0 0;
  font-size: 7px;
  line-height: 1.55;
}
.feature-paper {
  min-height: 168px;
  display: grid;
  place-items: center;
}
.paper-sheet {
  width: min(100%, 245px);
  min-height: 164px;
  padding: 17px 18px 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(76, 96, 64, .18);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(248,243,235,.98)),
    #fbf8f3;
  box-shadow: 0 18px 36px rgba(64, 50, 37, .11);
  transform: rotate(1.4deg);
}
.paper-sheet::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(76, 96, 64, .12);
  pointer-events: none;
}
.paper-kicker {
  display: block;
  color: var(--green);
  font-size: 6px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.paper-sheet strong {
  max-width: 145px;
  margin-top: 8px;
  display: block;
  font: 500 21px/.92 var(--serif);
}
.paper-sheet p {
  max-width: 137px;
  margin: 8px 0 0;
  font-size: 6.2px;
  line-height: 1.45;
}
.paper-lines {
  width: 118px;
  margin-top: 12px;
  display: grid;
  gap: 4px;
}
.paper-lines span {
  height: 1px;
  background: rgba(76, 96, 64, .23);
}
.paper-lines span:nth-child(2) { width: 82%; }
.paper-lines span:nth-child(3) { width: 62%; }
.paper-sheet img {
  width: 78px;
  height: 105px;
  position: absolute;
  right: 14px;
  bottom: 13px;
  border-radius: 3px;
  object-fit: cover;
  object-position: 30% center;
  filter: sepia(.08) saturate(.9);
}

.experience {
  min-height: 166px;
  padding: 22px 7%;
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 28px;
  align-items: center;
  background: var(--sage);
}
.experience h2 {
  max-width: 520px;
  margin: 5px 0 9px;
  font: 500 30px/.94 var(--serif);
}
.experience p {
  max-width: 455px;
  margin: 0;
  font-size: 7.4px;
  line-height: 1.6;
}
.experience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.experience-list span {
  padding: 13px 14px;
  border: 1px solid rgba(76, 96, 64, .2);
  border-radius: 8px;
  background: rgba(250, 247, 240, .54);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.testimonials {
  padding: 10px 9% 8px;
  position: relative;
  background: #fbf8f3;
}
.testimonials::before,
.testimonials::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 90px;
  bottom: 18px;
  background: center/contain no-repeat;
  opacity: .72;
}
.testimonials::before {
  left: 3.2%;
  background-image: url("assets/ramo-depoimento-esquerdo-referencia-transparente.png");
}
.testimonials::after {
  right: 3.2%;
  background-image: url("assets/ramo-depoimento-direito-referencia-transparente.png");
}
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-grid figure {
  margin: 0;
  padding: 7px 20px 7px;
  border: 1px solid #d5cbbf;
  border-radius: 8px;
  text-align: center;
}
.stars { color: var(--green); font-size: 8px; letter-spacing: 2px; }
.testimonial-grid blockquote { margin: 3px 0 3px; font-size: 6.7px; line-height: 1.4; }
.testimonial-grid figcaption { font-size: 6px; }
.dots { margin-top: 7px; display: flex; justify-content: center; gap: 7px; }
.dots span, .dots i { width: 6px; height: 6px; border-radius: 50%; background: #d0cec5; }
.dots span { background: var(--green); }
.cta-strip {
  min-height: 30px;
  padding: 0 23%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: var(--green);
}
.cta-strip p { margin: 0; font: 500 15px var(--serif); }
.cta-strip p span { margin-right: 14px; }
.cta-strip a { padding: 9px 20px; border: 1px solid #fff; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: .06em; color: var(--green); background: #fff; text-transform: uppercase; }
.cta-strip a:hover { background: var(--sage); }

footer {
  height: 103px;
  max-width: 1440px;
  margin: auto;
  overflow: hidden;
  background: #faf7f0;
}
.footer-grid {
  height: 83px;
  padding: 8px 10% 4px;
  display: grid;
  grid-template-columns: 1.25fr .75fr 1fr 1.35fr;
  gap: 55px;
}
.footer-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo strong { font-size: 21px; }
.footer-logo { transform: none; }
.footer-grid > div:first-child > p {
  width: 135px;
  margin: 7px 0;
  font-size: 7px;
  line-height: 1.5;
  text-align: center;
}
.social { width: 135px; text-align: center; font-size: 16px; }
.footer-grid h3 { margin: 2px 0 6px; font-size: 8px; font-weight: 600; text-transform: uppercase; }
.footer-grid a, .footer-grid p { display: block; margin: 0 0 3px; font-size: 7px; line-height: 1.35; }
.copyright {
  height: 20px;
  padding: 6px 10%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 6px;
}

.article-page {
  background: #fbf8f3;
  overflow-x: hidden;
}

.article-page .header {
  position: relative;
  left: auto;
  transform: none;
  background: rgba(248, 243, 235, .98);
  border-bottom: 1px solid var(--line);
}

.article-main {
  max-width: none;
}

.article-hero {
  min-height: calc(100vh - 76px);
  padding: 46px clamp(28px, 8vw, 130px) 54px;
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(280px, 520px);
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 7vw, 92px);
  background: var(--sage);
}

.article-hero-copy h1 {
  margin: 8px 0 16px;
  font: 500 clamp(48px, 6vw, 84px)/.88 var(--serif);
}

.article-hero-copy,
.article-scan {
  min-width: 0;
}

.article-hero-copy p {
  max-width: 410px;
  margin: 0 0 24px;
  font-size: 12px;
  line-height: 1.65;
}

.article-cover {
  width: 100%;
  max-width: 470px;
  max-height: calc(100vh - 140px);
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(40, 49, 38, .18));
}

.article-content {
  padding: 50px clamp(22px, 7vw, 110px) 62px;
  display: grid;
  grid-template-columns: minmax(230px, 330px) minmax(280px, 680px);
  align-items: start;
  justify-content: center;
  gap: 30px clamp(28px, 5vw, 70px);
  background: #fbf8f3;
}

.article-intro {
  position: sticky;
  top: 24px;
}

.article-intro h2 {
  margin: 8px 0 12px;
  font: 500 38px/.95 var(--serif);
}

.article-intro p {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
}

.article-scan {
  margin: 0;
}

.article-scan-full {
  grid-row: span 2;
}

.article-scan img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border: 1px solid rgba(76, 96, 64, .18);
  box-shadow: 0 14px 30px rgba(40, 49, 38, .13);
}

.article-scan figcaption {
  margin-top: 10px;
  color: rgba(40, 49, 38, .72);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.digital-magazine {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(223, 227, 214, .95), rgba(248, 243, 235, .98)),
    #f8f3eb;
}

.magazine-reader {
  min-height: calc(100vh - 76px);
  padding: clamp(28px, 5vw, 70px) clamp(22px, 6vw, 110px) clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(320px, 760px);
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 74px);
}

.reader-copy h1 {
  margin: 9px 0 16px;
  font: 500 clamp(46px, 5.5vw, 78px)/.88 var(--serif);
}

.reader-copy p {
  max-width: 340px;
  margin: 0 0 22px;
  font-size: 11px;
  line-height: 1.7;
}

.book-shell {
  min-width: 0;
}

.book-toolbar {
  width: min(100%, 620px);
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 12px;
  color: rgba(40, 49, 38, .72);
  font-size: 9px;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.book-control {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(76, 96, 64, .2);
  border-radius: 50%;
  background: rgba(248, 243, 235, .86);
  color: var(--green-dark);
  cursor: pointer;
  font: 28px/1 var(--serif);
}

.book-control:disabled {
  opacity: .35;
  cursor: default;
}

.book-stage {
  width: min(100%, 620px);
  min-height: 650px;
  margin: auto;
  padding: clamp(14px, 2vw, 24px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(53, 67, 47, .18), transparent 12%, transparent 88%, rgba(53, 67, 47, .12)),
    linear-gradient(145deg, #e4dccf, #fffaf2 42%, #d8d1c5);
  box-shadow:
    inset 0 0 0 1px rgba(76, 96, 64, .16),
    0 24px 54px rgba(40, 49, 38, .22);
}

.book-stage::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(53, 67, 47, .3), transparent);
  opacity: .5;
}

.book-page {
  width: min(100%, 540px);
  margin: 0;
  display: none;
  position: relative;
  transform-origin: left center;
}

.book-page.active {
  display: block;
  animation: pageIn .32s ease;
}

.book-page img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #fffdf8;
  border: 1px solid rgba(40, 49, 38, .2);
  box-shadow:
    12px 0 18px rgba(40, 49, 38, .1),
    0 8px 18px rgba(40, 49, 38, .16);
}

.book-page figcaption {
  margin-top: 10px;
  color: rgba(40, 49, 38, .74);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.book-thumbs {
  width: min(100%, 620px);
  margin: 18px auto 0;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.book-thumb {
  width: 88px;
  padding: 6px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: rgba(248, 243, 235, .76);
  color: var(--ink);
  cursor: pointer;
  font: 600 8px/1.3 var(--sans);
  text-transform: uppercase;
}

.book-thumb.active {
  border-color: rgba(76, 96, 64, .45);
  background: #fffaf2;
}

.book-thumb img {
  width: 100%;
  height: 80px;
  margin-bottom: 6px;
  object-fit: cover;
  object-position: center top;
}

@keyframes pageIn {
  from {
    opacity: .15;
    transform: rotateY(-8deg) translateX(12px);
  }
  to {
    opacity: 1;
    transform: rotateY(0) translateX(0);
  }
}

.reconstructed-book {
  max-width: none;
  background:
    linear-gradient(180deg, #f6f1e8 0, #f8f3eb 780px, #fbf8f3 100%);
}

.book-cover-digital {
  min-height: calc(100vh - 76px);
  padding: clamp(12px, 1.65vw, 22px);
  display: grid;
  position: relative;
}

.spread-header,
.source-scan h2 {
  color: rgba(40, 49, 38, .7);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.book-cover-digital .button {
  background: rgba(76, 96, 64, .94);
  box-shadow: 0 10px 24px rgba(40, 49, 38, .22);
}

.digital-cover-card {
  margin: 0;
  width: 100%;
  min-height: calc(100vh - 76px - clamp(24px, 4vw, 48px));
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(248, 243, 235, .98) 0, rgba(248, 243, 235, .92) 27%, rgba(248, 243, 235, .5) 51%, rgba(248, 243, 235, .04) 72%),
    url("assets/blog-hero-cida-desktop-ai.png") center / cover no-repeat;
  box-shadow: 0 28px 68px rgba(40, 49, 38, .18);
}

.digital-cover-card::before {
  content: none;
}

.digital-cover-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(248, 243, 235, .12), transparent 42%, rgba(41, 52, 34, .06)),
    linear-gradient(0deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0) 56%);
  pointer-events: none;
}

.digital-cover-card img {
  display: none;
}

.digital-cover-card figcaption {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 3;
  color: var(--ink);
}

.cover-brand {
  position: absolute;
  top: clamp(58px, 9vh, 112px);
  left: clamp(42px, 8vw, 118px);
  padding: 10px 18px;
  border: 1px solid rgba(76, 96, 64, .18);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(250, 247, 240, .78);
  font-size: clamp(11px, .9vw, 14px);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cover-brand i {
  display: none;
}

.cover-issue {
  width: auto;
  height: auto;
  min-width: 112px;
  padding: 14px 18px;
  position: absolute;
  right: clamp(26px, 3vw, 48px);
  bottom: clamp(30px, 5vh, 70px);
  border: 1px solid rgba(250, 247, 240, .55);
  border-radius: 8px;
  color: #fdf8ef;
  background: rgba(53, 67, 47, .72);
  font-size: clamp(9px, .85vw, 12px);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.cover-credit {
  position: absolute;
  left: clamp(42px, 8vw, 118px);
  bottom: clamp(128px, 18vh, 188px);
  color: rgba(40, 49, 38, .72);
  font-size: clamp(10px, .86vw, 13px);
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  text-transform: none;
}

.cover-credit strong {
  color: var(--green-dark);
  text-transform: uppercase;
}

.cover-title {
  position: absolute;
  left: clamp(42px, 8vw, 118px);
  top: clamp(122px, 19vh, 210px);
  max-width: min(580px, 43vw);
  color: var(--ink);
  font: 500 clamp(54px, 6.2vw, 96px)/.88 var(--serif);
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(250, 247, 240, .42);
}

.cover-subtitle {
  width: min(460px, 38vw);
  padding: 0;
  position: absolute;
  left: clamp(42px, 8vw, 118px);
  bottom: clamp(64px, 9vh, 102px);
  transform: none;
  color: rgba(40, 49, 38, .86);
  background: transparent;
  font-size: clamp(14px, 1.18vw, 18px);
  font-weight: 500;
  line-height: 1.55;
  text-align: left;
}

.cover-back {
  position: absolute;
  left: clamp(42px, 8vw, 118px);
  bottom: clamp(26px, 4vh, 54px);
  z-index: 4;
}


.digital-spread {
  width: min(1120px, calc(100% - 80px));
  margin: 42px auto 80px;
  padding: clamp(36px, 4.2vw, 64px);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(40, 49, 38, .08), transparent 4%, transparent 96%, rgba(40, 49, 38, .08)),
    #f2eadc;
  box-shadow:
    inset 0 0 0 1px rgba(76, 96, 64, .16),
    0 26px 62px rgba(40, 49, 38, .14);
}

.digital-spread::before {
  content: "";
  position: absolute;
  inset: 18px 50% 18px auto;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(40, 49, 38, .16), transparent);
}

.spread-header,
.spread-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.spread-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(310px, .92fr) minmax(350px, 1.08fr);
  grid-template-areas:
    "text visual"
    "text quote";
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  min-width: 0;
}

.article-text {
  grid-area: text;
  columns: 2 245px;
  column-gap: 28px;
  min-width: 0;
}

.article-text h2 {
  margin: 0 0 22px;
  break-after: avoid;
  column-span: all;
  font: 600 clamp(52px, 5vw, 72px)/.88 var(--serif);
}

.article-text h2 em {
  display: block;
  color: #bd7b82;
  font-style: normal;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.article-text h3 {
  margin: 16px 0 7px;
  color: #b5636f;
  break-after: avoid;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-text p {
  margin: 0 0 12px;
  font: 13.5px/1.66 Georgia, "Times New Roman", serif;
  text-align: justify;
}

.article-text strong {
  color: #b5636f;
}

.article-visual {
  grid-area: visual;
  display: grid;
  grid-template-columns: 1fr minmax(130px, 172px);
  gap: 20px;
  align-items: start;
  min-width: 0;
}

.portrait-card {
  margin: 0;
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 1.22 / .86;
  object-fit: cover;
  object-position: 50% 28%;
}

.portrait-card figcaption {
  margin-top: 6px;
  color: rgba(40, 49, 38, .48);
  font-size: 7px;
  text-align: right;
  text-transform: uppercase;
}

.side-note {
  margin: 6px 0 28px;
  color: #8f6070;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.55;
}

.side-note strong {
  color: #b5636f;
  text-transform: uppercase;
}

.balzac-quote {
  grid-area: quote;
  margin: 0;
  padding: clamp(34px, 4vw, 48px);
  border-radius: 50%;
  background: rgba(225, 216, 190, .72);
  color: #577099;
  text-align: center;
}

.balzac-quote span {
  display: block;
  margin-bottom: 8px;
  color: #bc6373;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.balzac-quote p {
  margin: 0;
  font-size: clamp(13px, 1.18vw, 16px);
  font-weight: 700;
  line-height: 1.38;
}

.balzac-quote cite {
  display: block;
  margin-top: 8px;
  color: #bc6373;
  font-size: 10px;
  font-style: normal;
}

.spread-footer {
  margin-top: 20px;
  color: rgba(40, 49, 38, .58);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.source-scan {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto 60px;
}

.source-scan h2 {
  margin: 0 0 14px;
}

.source-scan img {
  width: 100%;
  border: 1px solid rgba(76, 96, 64, .18);
  box-shadow: 0 18px 38px rgba(40, 49, 38, .14);
}

@media (min-width: 1100px) {
  body {
    background:
      radial-gradient(circle at 4% 18%, rgba(76, 96, 64, .09) 0 90px, transparent 91px),
      radial-gradient(circle at 96% 72%, rgba(76, 96, 64, .07) 0 120px, transparent 121px),
      linear-gradient(90deg, #f2eee5 0, #f8f3eb 10%, #f8f3eb 90%, #f2eee5 100%);
  }

  .header,
  main,
  footer {
    width: 100%;
    max-width: none;
  }

  .header {
    height: 96px;
    padding: 0 clamp(70px, 8vw, 150px);
    grid-template-columns: 210px 1fr 150px;
    gap: 32px;
    border-bottom: 0;
  }

  .article-page .header {
    border-bottom: 1px solid var(--line);
  }

  .article-hero {
    min-height: calc(100vh - 96px);
  }

  .magazine-reader {
    min-height: calc(100vh - 96px);
  }

  .book-stage {
    min-height: 720px;
  }

  .book-cover-digital {
    min-height: calc(100vh - 96px);
  }

  .digital-cover-card img {
    object-fit: cover;
    object-position: center center;
  }

  .logo img {
    width: 160px;
    height: 73px;
  }

  .nav {
    gap: clamp(28px, 3vw, 48px);
  }

  .nav a {
    font-size: 9px;
    letter-spacing: .04em;
  }

  .schedule {
    padding: 14px 18px;
    font-size: 10px;
  }

  .hero {
    height: 681px;
    grid-template-columns: 45% 55%;
  }

  .hero-copy {
    padding: 148px 5vw 0 clamp(88px, 9vw, 170px);
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(68px, 5.3vw, 84px);
    line-height: .9;
  }

  .hero-copy > p {
    margin-bottom: 22px;
    font-size: 12px;
    line-height: 1.5;
  }

  .button {
    padding: 14px 26px;
    font-size: 12px;
  }

  .benefits {
    width: min(100%, 560px);
    margin-top: 30px;
    gap: 12px;
  }

  .benefits article {
    min-height: 84px;
    padding: 10px 8px;
  }

  .benefits svg {
    width: 34px;
    height: 34px;
  }

  .benefits span {
    font-size: 7px;
    line-height: 1.35;
  }

  .hero-photo {
    background-size: auto, cover;
    background-position: left center, 72% center;
    background-repeat: no-repeat;
  }

  .authority {
    padding: 28px clamp(90px, 8vw, 160px);
    grid-template-columns: .9fr 1.1fr;
  }

  .authority h2 {
    font-size: 34px;
  }

  .authority-copy p {
    font-size: 9px;
  }

  .authority-points article {
    min-height: 112px;
    padding: 19px 18px;
  }

  .authority-points strong {
    font-size: 38px;
  }

  .authority-points span {
    font-size: 8px;
  }

  .services {
    padding: 24px clamp(90px, 8vw, 160px) 34px;
  }

  .section-title h2 {
    font-size: 31px;
  }

  .section-title p {
    margin-bottom: 17px;
    font-size: 9px;
  }

  .service-grid {
    gap: clamp(18px, 2vw, 30px);
  }

  .service-photo {
    height: clamp(168px, 13.5vw, 210px);
  }

  .service-photo img {
    height: 132%;
  }

  .service-seal {
    width: 52px;
    height: 52px;
    margin-top: -24px;
  }

  .service h3 {
    font-size: 9.5px;
  }

  .service p {
    font-size: 7.5px;
    line-height: 1.4;
  }

  .service-link {
    font-size: 11px;
    padding: 9px 21px;
  }

  .facial-care {
    height: 320px;
    grid-template-columns: 40% 60%;
  }

  .facial-copy {
    padding: 46px clamp(90px, 8vw, 150px) 42px 7%;
  }

  .facial-copy h2 {
    font-size: 42px;
  }

  .facial-copy p {
    font-size: 10px;
  }

  .clay-options,
  .care-steps {
    margin-top: 18px;
    gap: 9px;
  }

  .clay-options span,
  .care-steps span {
    padding: 8px 12px;
    font-size: 7px;
  }

  .about {
    height: 320px;
    grid-template-columns: 45% 55%;
  }

  .about-copy {
    padding: 46px 48px 28px clamp(88px, 9vw, 170px);
  }

  .about-copy::before {
    width: 102px;
    height: 192px;
    background-size: 102px 192px;
  }

  .about h2 {
    margin: 8px 0 14px;
    font-size: 37px;
    line-height: .94;
  }

  .about-copy p {
    max-width: 520px;
    margin-bottom: 18px;
    font-size: 9px;
    line-height: 1.6;
  }

  .about-photo {
    height: 320px;
  }

  .about-photo > img {
    object-position: center 20%;
  }

  .feature {
    min-height: 290px;
    padding: 22px clamp(90px, 8vw, 160px);
    grid-template-columns: 215px minmax(0, 1fr) minmax(270px, 30%);
    column-gap: 28px;
  }

  .feature-portrait {
    width: 215px;
    height: 230px;
    margin-left: 0;
    justify-self: start;
    border-radius: 12px;
  }

  .feature-copy {
    padding-left: 2px;
  }

  .feature-copy h2 {
    font-size: 31px;
  }

  .feature-copy h3 {
    font-size: 21px;
  }

  .feature-copy p {
    max-width: 470px;
    font-size: 8.5px;
  }

  .feature-paper {
    min-height: 218px;
  }

  .paper-sheet {
    width: min(100%, 292px);
    min-height: 214px;
    padding: 23px 24px 19px;
  }

  .paper-kicker {
    font-size: 7px;
  }

  .paper-sheet strong {
    max-width: 170px;
    font-size: 27px;
  }

  .paper-sheet p {
    max-width: 158px;
    font-size: 7.5px;
  }

  .paper-lines {
    width: 145px;
  }

  .paper-sheet img {
    width: 96px;
    height: 132px;
    right: 18px;
    bottom: 17px;
  }

  .experience {
    min-height: 230px;
    padding: 34px clamp(90px, 8vw, 160px);
  }

  .experience h2 {
    font-size: 40px;
  }

  .experience p {
    font-size: 10px;
  }

  .experience-list span {
    padding: 18px 20px;
    font-size: 8px;
  }

  .testimonials {
    padding: 22px clamp(90px, 8vw, 160px) 20px;
  }

  .testimonial-grid {
    gap: 24px;
  }

  .testimonial-grid figure {
    padding: 15px 28px 13px;
  }

  .testimonial-grid blockquote {
    font-size: 9px;
    line-height: 1.5;
  }

  .testimonial-grid figcaption {
    font-size: 7.5px;
  }

  .cta-strip {
    min-height: 46px;
    padding: 0 clamp(100px, 16vw, 260px);
  }

  .cta-strip p {
    font-size: 20px;
  }

  footer {
    height: auto;
    overflow: visible;
  }

  .footer-grid {
    height: auto;
    min-height: 150px;
    padding: 22px clamp(90px, 9vw, 170px) 18px;
    gap: clamp(44px, 6vw, 88px);
  }

  .footer-grid h3 {
    font-size: 9px;
  }

  .footer-grid a,
  .footer-grid p {
    margin-bottom: 5px;
    font-size: 8px;
  }

  .copyright {
    height: auto;
    min-height: 34px;
    padding: 10px clamp(90px, 9vw, 170px);
    font-size: 7px;
  }
}

@media (min-width: 701px) and (max-width: 1000px) {
  .header {
    padding: 0 7%;
    grid-template-columns: 175px 1fr 105px;
    gap: 12px;
  }
  .logo img { width: 135px; height: 62px; }
  .nav { justify-content: flex-start; }
  .nav { gap: 15px; }
  .nav a { font-size: 6px; }
  .schedule { padding: 10px 8px; font-size: 7px; }
  .hero-copy { padding: 96px 0 0 72px; }
  .hero { height: 410px; }
  .hero-photo {
    background-size: auto, auto 96%;
    background-position: left center, 72% center;
    background-repeat: no-repeat;
  }
  .authority {
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 18px;
  }
  .authority h2 { font-size: 22px; }
  .authority-copy p { font-size: 6.6px; }
  .authority-points { gap: 8px; }
  .authority-points article {
    min-height: 78px;
    padding: 10px 9px;
  }
  .authority-points strong { font-size: 24px; }
  .authority-points span { font-size: 5.7px; }
  .services { padding-top: 12px; padding-bottom: 8px; }
  .section-title p { margin-bottom: 8px; font-size: 7.5px; }
  .service h3 { font-size: 8.5px; }
  .service p { font-size: 6.4px; line-height: 1.28; }
  .facial-care { height: 188px; }
  .facial-copy { padding-top: 26px; padding-bottom: 24px; }
  .facial-copy h2 { font-size: 26px; }
  .facial-copy p { font-size: 6.7px; }
  .clay-options,
  .care-steps { margin-top: 9px; gap: 5px; }
  .clay-options span,
  .care-steps span {
    padding: 5px 7px;
    font-size: 5px;
  }
  .feature {
    min-height: 190px;
    grid-template-columns: 135px minmax(0, 1fr) minmax(160px, 28%);
    gap: 14px;
  }
  .feature-portrait {
    width: 135px;
    height: 146px;
  }
  .feature-copy h2 { font-size: 23px; }
  .feature-copy h3 { font-size: 15px; }
  .feature-copy p { font-size: 6.2px; }
  .paper-sheet {
    min-height: 138px;
    padding: 13px 13px 12px;
  }
  .paper-sheet strong {
    max-width: 102px;
    font-size: 17px;
  }
  .paper-sheet p {
    max-width: 92px;
    font-size: 5.5px;
  }
  .paper-lines { width: 84px; margin-top: 8px; }
  .paper-sheet img {
    width: 56px;
    height: 76px;
    right: 10px;
    bottom: 10px;
  }
  .experience {
    min-height: 154px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .experience h2 { font-size: 25px; }
  .experience p { font-size: 6.8px; }
  .experience-list { gap: 7px; }
  .experience-list span {
    padding: 10px;
    font-size: 6px;
  }
  .testimonials { padding-top: 8px; padding-bottom: 6px; }
  footer { height: 118px; overflow: hidden; }
  .footer-grid {
    height: 96px;
    padding-top: 8px;
    padding-bottom: 5px;
    gap: 42px;
  }
  .footer-logo img {
    width: 102px;
    height: 47px;
  }
  .footer-grid > div:first-child > p {
    width: 102px;
    margin: 2px 0;
    font-size: 5.5px;
    line-height: 1.25;
  }
  .social {
    width: 102px;
    font-size: 10px;
    line-height: 1;
  }
  .footer-grid h3 {
    margin-top: 1px;
    margin-bottom: 3px;
  }
  .footer-grid a,
  .footer-grid p { font-size: 6.5px; line-height: 1.4; }
  .copyright {
    height: 22px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
}

@media (max-width: 700px) {
  .header {
    grid-template-columns: 1fr auto;
    height: 74px;
    padding: 0 25px;
    position: relative;
    left: auto;
    transform: none;
    background: rgba(248, 243, 235, .98);
  }
  .logo img {
    width: 122px;
    height: 58px;
  }
  .schedule-top { display: none; }
  .menu-button {
    width: 38px; height: 38px; display: grid; place-content: center; gap: 7px;
    border: 0; background: transparent;
  }
  .menu-button span { width: 24px; height: 1px; background: var(--ink); }
  .nav {
    display: none; position: absolute; top: 74px; left: 0; right: 0;
    padding: 25px; flex-direction: column; align-items: center; background: var(--cream);
  }
  .nav.open { display: flex; }
  /* Hero mobile estilo blog: foto com o texto sobreposto e
     os benefícios logo abaixo da foto. */
  .hero {
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .hero-copy {
    order: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* mesma proporção/altura da foto para o overlay cobrir só a imagem */
    aspect-ratio: 9 / 16;
    max-height: 680px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 26px 28px;
    text-align: center;
    overflow: visible;
  }
  /* título e texto no topo; botão empurrado para a base da foto,
     deixando o rosto livre no meio. */
  .hero-copy .button {
    margin-top: auto;
  }
  .hero h1 {
    font-size: clamp(38px, 11.5vw, 50px);
    line-height: .9;
    margin-bottom: 9px;
  }
  .hero-copy > p {
    max-width: 330px;
    margin: 0 auto 14px;
  }
  .hero-photo {
    /* Versão mobile dedicada em 9:16 (vertical com respiro em cima).
       O degradê claro no topo garante a leitura do texto sobreposto.
       A última camada é o fallback da foto desktop. */
    order: 2;
    height: auto;
    aspect-ratio: 9 / 16;
    max-height: 680px;
    background:
      linear-gradient(180deg, rgba(250, 246, 239, .94) 0%, rgba(250, 246, 239, .6) 24%, rgba(250, 246, 239, .15) 44%, transparent 60%),
      url("assets/hero-mulher-conforto-mobile-ai.png") center top / cover no-repeat,
      url("assets/hero-mulher-conforto-ai.png") 72% center / cover no-repeat;
  }
  .hero .benefits {
    order: 3;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    margin: 22px 0 44px;
    padding: 0 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .benefits article {
    min-height: 82px;
    padding: 10px 8px;
  }
  .benefits svg {
    width: 32px;
    height: 32px;
  }
  .benefits span {
    font-size: 8px;
    line-height: 1.4;
  }
  .authority {
    padding: 28px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .authority h2 {
    font-size: 31px;
  }
  .authority-copy p {
    max-width: 440px;
    font-size: 8.5px;
  }
  .authority-points {
    grid-template-columns: 1fr;
  }
  .authority-points article {
    min-height: 0;
    padding: 14px 16px;
  }
  .authority-points strong {
    font-size: 32px;
  }
  .authority-points span {
    font-size: 7px;
  }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service:last-child { grid-column: auto; max-width: none; justify-self: stretch; }
  .facial-care {
    height: auto;
    grid-template-columns: 1fr;
  }
  .facial-photo {
    height: 250px;
  }
  .facial-copy {
    padding: 32px 30px 34px;
  }
  .facial-copy h2 {
    font-size: 30px;
  }
  .facial-copy p {
    font-size: 8px;
  }
  .clay-options span,
  .care-steps span {
    font-size: 6px;
  }
  .about, .feature { height: auto; grid-template-columns: 1fr; }
  .about-copy { padding: 34px 30px 30px; }
  .about-copy > * {
    position: relative;
    z-index: 1;
  }
  .about-copy::before {
    width: 54px;
    height: 102px;
    background-size: 54px 102px;
    opacity: .72;
    z-index: 0;
  }
  .about-photo { min-height: 300px; }
  .feature { padding: 30px; gap: 18px; }
  .feature-portrait {
    width: min(250px, 100%);
    height: auto;
    aspect-ratio: 5 / 4;
    justify-self: start;
    margin-left: 0;
    border-radius: 12px;
    object-fit: cover;
    object-position: center 20%;
  }
  .feature-copy p {
    max-width: 420px;
    font-size: 8px;
  }
  .feature-paper {
    width: 100%;
    min-height: 0;
    justify-items: start;
  }
  .paper-sheet {
    width: min(100%, 330px);
    min-height: 198px;
    transform: none;
  }
  .paper-sheet strong {
    max-width: 190px;
    font-size: 25px;
  }
  .paper-sheet p {
    max-width: 168px;
    font-size: 7px;
  }
  .paper-sheet img {
    width: 90px;
    height: 124px;
  }
  .experience {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 22px;
  }
  .experience h2 {
    font-size: 30px;
  }
  .experience p {
    font-size: 8px;
  }
  .experience-list {
    grid-template-columns: 1fr;
  }
  .experience-list span {
    padding: 13px 14px;
    font-size: 7px;
  }
  .testimonials {
    padding: 24px 18px 22px;
    overflow: hidden;
  }
  .testimonials .section-title,
  .testimonial-grid,
  .dots {
    position: relative;
    z-index: 1;
  }
  .testimonials::before,
  .testimonials::after {
    display: none;
  }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid figure {
    padding: 14px 18px 12px;
    background: rgba(251, 248, 243, .82);
  }
  .testimonial-grid blockquote {
    font-size: 7.4px;
    line-height: 1.45;
  }
  .cta-strip { min-height: 70px; padding: 14px 25px; gap: 15px; }
  .cta-strip p {
    font-size: 16px;
    line-height: 1.2;
  }
  footer { height: auto; overflow: visible; }
  .footer-grid {
    height: auto;
    padding: 34px 26px 28px;
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }
  .footer-grid h3 { margin-bottom: 10px; font-size: 10px; }
  .footer-grid a, .footer-grid p { margin-bottom: 6px; font-size: 9px; line-height: 1.55; }
  .footer-grid > div:first-child > p {
    font-size: 9px;
  }
  .copyright {
    height: auto;
    min-height: 64px;
    padding: 16px 24px;
    align-items: center;
    font-size: 8px;
    line-height: 1.5;
  }

  .article-hero {
    min-height: auto;
    padding: 38px 28px 42px;
    grid-template-columns: 1fr;
  }

  .article-hero-copy h1 {
    font-size: 44px;
  }

  .article-hero-copy p {
    max-width: 310px;
    font-size: 10px;
  }

  .article-cover {
    width: calc(100vw - 56px);
    max-height: none;
  }

  .article-content {
    padding: 34px 22px 44px;
    grid-template-columns: 1fr;
  }

  .article-intro {
    position: static;
  }

  .article-intro h2 {
    font-size: 32px;
  }

  .article-intro p {
    max-width: 320px;
    font-size: 10px;
  }

  .article-scan-full {
    grid-row: auto;
  }

  .article-scan img {
    width: calc(100vw - 44px);
  }

  .magazine-reader {
    min-height: auto;
    padding: 28px 20px 38px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .reader-copy {
    max-width: 340px;
    margin: auto;
    text-align: left;
  }

  .reader-copy h1 {
    font-size: 43px;
  }

  .reader-copy p {
    max-width: 310px;
    font-size: 10px;
  }

  .book-toolbar {
    width: 100%;
    grid-template-columns: 38px 1fr 38px;
    gap: 8px;
  }

  .book-control {
    width: 38px;
    height: 38px;
  }

  .book-stage {
    width: 100%;
    min-height: 0;
    padding: 12px;
    border-radius: 5px;
  }

  .book-stage::before {
    display: none;
  }

  .book-page {
    width: 100%;
  }

  .book-page img {
    max-height: none;
  }

  .book-thumbs {
    width: 100%;
    gap: 10px;
  }

  .book-shell {
    width: min(100%, 350px);
    margin: auto;
  }

  .book-thumb {
    width: 78px;
  }

  .book-thumb img {
    height: 66px;
  }

  .book-cover-digital {
    min-height: calc(100vh - 74px);
    padding: 10px;
    grid-template-columns: 1fr;
  }

  .digital-cover-card {
    width: 100%;
    min-height: calc(100vh - 94px);
    padding: 0;
    background:
      linear-gradient(180deg, rgba(248, 243, 235, .39) 0, rgba(248, 243, 235, .36) 27%, rgba(248, 243, 235, .09) 56%, rgba(40, 49, 38, .06) 100%),
      url("assets/blog-hero-cida-mobile-ai.png") center / cover no-repeat;
  }

  .cover-brand {
    top: 26px;
    left: 22px;
    right: auto;
    padding: 8px 12px;
    font-size: 8px;
  }

  .cover-issue {
    display: block;
    min-width: 82px;
    padding: 9px 10px;
    right: 18px;
    bottom: 18px;
    font-size: 7px;
  }

  .cover-credit {
    display: none;
  }

  .cover-title {
    left: 22px;
    top: 78px;
    max-width: 310px;
    font-size: 34px;
    line-height: .9;
  }

  .cover-subtitle {
    width: calc(100% - 44px);
    padding: 10px 12px;
    left: 22px;
    bottom: 76px;
    transform: none;
    border: 1px solid rgba(76, 96, 64, .16);
    border-radius: 8px;
    background: rgba(250, 247, 240, .76);
    font-size: 10px;
    line-height: 1.45;
    white-space: normal;
  }

  .cover-back {
    left: 22px;
    bottom: 22px;
  }

  .digital-spread {
    width: calc(100vw - 18px);
    max-width: 680px;
    padding: 26px 20px;
  }

  .spread-header,
  .spread-footer {
    flex-wrap: wrap;
  }

  .digital-spread::before {
    display: none;
  }

  .spread-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "text"
      "quote";
    width: 100%;
    max-width: calc(100vw - 58px);
  }

  .article-text {
    columns: 1;
    width: 100%;
    max-width: calc(100vw - 58px);
  }

  .article-text h2 {
    font-size: 44px;
  }

  .article-text p {
    max-width: calc(100vw - 58px);
    font-size: 13px;
    line-height: 1.68;
    text-align: left;
    overflow-wrap: break-word;
  }

  .article-visual {
    grid-template-columns: 1fr;
    max-width: calc(100vw - 58px);
  }

  .portrait-card img {
    aspect-ratio: 1 / .86;
  }

  .side-note {
    margin-top: 0;
    font-size: 12px;
  }

  .balzac-quote {
    max-width: calc(100vw - 58px);
    border-radius: 18px;
  }

  .source-scan {
    width: calc(100vw - 18px);
    max-width: 680px;
  }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 42px; }
  .hero-copy > p { font-size: 8.5px; }
  .hero-copy { max-height: 600px; }
  .hero-photo { max-height: 600px; }
  .benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .benefits article {
    min-height: 68px;
    grid-template-columns: 44px 1fr;
    align-items: center;
    justify-items: start;
    text-align: left;
  }
  .benefits svg {
    margin: 0;
  }
  .services { padding: 22px 18px; }
  .service-grid { grid-template-columns: 1fr; }
  .service:last-child { grid-column: auto; max-width: none; }
  .service-photo { height: 195px; }
  .service-photo img { height: 120%; }
  .service-seal {
    width: 46px;
    height: 46px;
    margin-top: -23px;
  }
  .service h3 { font-size: 8.5px; }
  .service p {
    max-width: 210px;
    margin: auto;
    font-size: 6.6px;
  }
  .service-link {
    font-size: 10px;
    padding: 9px 20px;
  }
  .facial-copy {
    padding: 30px 24px 32px;
  }
  .facial-copy h2 {
    font-size: 27px;
  }
  .care-steps {
    gap: 6px;
  }
  .care-steps span {
    font-size: 5.7px;
  }
  .about h2 { font-size: 28px; }
  .about-copy p { font-size: 7px; }
  .about-photo { min-height: 270px; }
  .passion-badge {
    width: 78px;
    height: 78px;
    right: 18px;
    top: 18px;
  }
  .passion-badge p { font-size: 5.5px; }
  .feature { grid-template-columns: 1fr; }
  .feature-copy h2 { font-size: 26px; }
  .feature-copy h3 { font-size: 18px; }
  .feature-copy p { font-size: 7px; }
  .paper-sheet {
    min-height: 184px;
    padding: 18px;
  }
  .paper-sheet strong {
    max-width: 160px;
    font-size: 22px;
  }
  .paper-sheet p {
    max-width: 145px;
    font-size: 6.4px;
  }
  .paper-lines {
    width: 122px;
  }
  .paper-sheet img {
    width: 78px;
    height: 108px;
  }
  .cta-strip { flex-direction: column; text-align: center; }
  .cta-strip {
    min-height: 88px;
    padding: 15px 22px;
  }
  .cta-strip p span {
    display: inline-block;
    margin-right: 7px;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .footer-grid > div:first-child {
    align-items: center;
  }
  .footer-logo { margin: auto; }
  .footer-grid > div:first-child > p,
  .social {
    width: auto;
  }
  .social { margin-top: 12px; }
  .copyright { gap: 10px; flex-direction: column; text-align: center; }

  .magazine-reader {
    max-width: 100vw;
    overflow: hidden;
  }

  .book-shell {
    width: min(100%, 300px);
  }

  .digital-spread,
  .source-scan {
    width: 300px;
    max-width: calc(100vw - 28px);
    padding-right: 16px;
    padding-left: 16px;
  }

  .spread-grid,
  .article-text,
  .article-text p,
  .article-visual,
  .balzac-quote {
    max-width: 268px;
  }

  .article-text h2 {
    font-size: 36px;
  }

  .spread-header {
    row-gap: 6px;
  }
}

/* =========================================================
   Movimentos suaves: scroll-reveal + micro-interações
   ========================================================= */

/* Aparecer suave ao entrar na tela (ativado só quando há JS) */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1),
              transform .7s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Micro-interações de hover (toque suave ao interagir) */
.button {
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(76, 96, 64, .24);
}
.button:active { transform: translateY(0); }

.schedule { transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease; }
.schedule:hover { transform: translateY(-2px); }

.logo img { transition: transform .35s ease, opacity .35s ease; }
.logo:hover img { transform: scale(1.04); }

.nav a { transition: color .25s ease, border-color .25s ease; }

.service-photo img { transition: transform .65s cubic-bezier(.22, .61, .36, 1); }
.service:hover .service-photo img,
.service:focus-visible .service-photo img { transform: scale(1.06); }

.benefits article { transition: transform .25s ease; }
.benefits article:hover { transform: translateY(-3px); }

.testimonial-grid figure {
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-grid figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(64, 50, 37, .1);
}

.feature-portrait { transition: transform .55s ease, box-shadow .35s ease; }
.feature-portrait:hover { transform: scale(1.03); }

.portrait-card img { transition: transform .6s ease; }
.portrait-card:hover img { transform: scale(1.04); }

.cta-strip a { transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease; }
.cta-strip a:hover { transform: translateY(-2px); }

.footer-grid a { transition: color .25s ease, opacity .25s ease; }

/* Acessibilidade: respeitar quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Ícones inline nítidos e consistentes ===== */
.icon {
  display: inline-block;
  vertical-align: -2px;
  flex: none;
}
.whatsapp.icon { width: 17px; height: 17px; vertical-align: -4px; }
.button .icon { width: 14px; height: 14px; margin-left: 8px; vertical-align: -2px; }
.cta-strip p .icon { width: 19px; height: 19px; margin-right: 12px; vertical-align: -4px; }
.cta-strip a .icon { width: 16px; height: 16px; margin-right: 8px; vertical-align: -3px; }

.service-seal svg { width: 22px; height: 22px; color: var(--green); display: block; }

/* Linhas de contato no rodapé */
.contact-line { display: flex; align-items: flex-start; gap: 8px; }
.contact-line .icon { width: 15px; height: 15px; margin-top: 2px; color: var(--green); vertical-align: 0; }

/* Redes sociais como links com ícone */
.social { width: auto; display: flex; gap: 14px; align-items: center; }
.footer-grid > div:first-child .social { justify-content: flex-start; }
.social a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--green);
  border: 1px solid rgba(76, 96, 64, .28);
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease;
}
.social a:hover { color: #fff; background: var(--green); border-color: var(--green); transform: translateY(-2px); }
.social a svg { width: 18px; height: 18px; }
@media (max-width: 700px) {
  .social { justify-content: center; }
}

/* ===================== Páginas de serviço (SEO) ===================== */
.svc-page { background: var(--cream); overflow-x: hidden; }
.svc-page .header {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  background: rgba(248, 243, 235, .98);
  border-bottom: 1px solid var(--line);
}
.svc-main { max-width: none; margin: 0; }

.svc-breadcrumb {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px 0;
  font-size: 11px;
  letter-spacing: .01em;
  color: #857d6d;
}
.svc-breadcrumb a { color: var(--green); }
.svc-breadcrumb a:hover { text-decoration: underline; }
.svc-breadcrumb span { margin: 0 7px; opacity: .5; }

.svc-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 24px 44px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.svc-hero .kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
}
.svc-hero h1 {
  margin: 12px 0 16px;
  font: 500 clamp(38px, 5vw, 60px)/.98 var(--serif);
  letter-spacing: -.02em;
  color: var(--ink);
}
.svc-hero h1 em { color: var(--green); font-style: italic; }
.svc-hero-lead {
  font-size: 15px;
  line-height: 1.68;
  color: #4a4636;
  max-width: 50ch;
}
.svc-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background-color .22s ease, color .22s ease;
}
.button-ghost:hover { background: var(--green); color: #fff; }
.button .icon, .button-ghost .icon { width: 15px; height: 15px; }
.svc-hero-photo { margin: 0; }
.svc-hero-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 22px 54px rgba(64, 50, 37, .16);
}

.svc-body {
  max-width: 1120px;
  margin: 0 auto;
  padding: 6px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 322px;
  gap: clamp(30px, 5vw, 66px);
  align-items: start;
}
.svc-main-content h2 {
  margin: 36px 0 12px;
  font: 500 clamp(26px, 3vw, 34px)/1.12 var(--serif);
  color: var(--green-dark);
}
.svc-main-content > h2:first-child { margin-top: 4px; }
.svc-main-content p { font-size: 15px; line-height: 1.78; margin: 0 0 14px; color: #423f31; }

.svc-list { list-style: none; margin: 8px 0 20px; padding: 0; display: grid; gap: 11px; }
.svc-list li { position: relative; padding-left: 32px; font-size: 14.5px; line-height: 1.6; color: #423f31; }
.svc-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  background: var(--sage);
  color: var(--green-dark);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.svc-steps { list-style: none; counter-reset: step; margin: 8px 0 20px; padding: 0; display: grid; gap: 16px; }
.svc-steps li { position: relative; padding-left: 48px; font-size: 14.5px; line-height: 1.6; color: #423f31; min-height: 32px; }
.svc-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 13px;
}
.svc-steps li strong { display: block; margin-bottom: 2px; color: var(--green-dark); font-size: 15px; }

.svc-faq { margin: 10px 0 4px; display: grid; gap: 10px; }
.svc-faq details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf9;
  padding: 0 18px;
}
.svc-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.svc-faq summary::-webkit-details-marker { display: none; }
.svc-faq summary::after { content: "+"; font-size: 22px; line-height: 1; color: var(--green); }
.svc-faq details[open] summary::after { content: "\2013"; }
.svc-faq details p { font-size: 14px; line-height: 1.72; margin: 0 0 15px; color: #4a4636; }

.svc-aside { display: grid; gap: 22px; position: sticky; top: 20px; }
.svc-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf9;
  padding: 24px 22px;
  box-shadow: 0 12px 30px rgba(64, 50, 37, .06);
}
.svc-card h3 { margin: 0 0 8px; font: 500 23px var(--serif); color: var(--green-dark); }
.svc-card > p { font-size: 13px; line-height: 1.62; color: #4a4636; margin: 0 0 16px; }
.svc-card .button { display: block; width: 100%; text-align: center; }
.svc-card .contact-line { font-size: 12.5px; margin: 12px 0 0; color: #4a4636; }
.svc-card .contact-line .icon { color: var(--green); }

.svc-related h3 { font: 500 21px var(--serif); margin: 0 0 8px; color: var(--green-dark); }
.svc-related a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink);
  transition: color .2s ease, padding-left .2s ease;
}
.svc-related a::before { content: "→"; color: var(--green); margin-right: 8px; }
.svc-related a:hover { color: var(--green); padding-left: 5px; }
.svc-related a:last-child { border-bottom: 0; }

@media (max-width: 900px) {
  .svc-body { grid-template-columns: 1fr; }
  .svc-aside { position: static; }
}
@media (max-width: 720px) {
  .svc-hero { grid-template-columns: 1fr; padding-top: 12px; }
  .svc-hero-photo { order: -1; }
  .svc-hero-photo img { aspect-ratio: 4 / 3; max-height: none; }
}
