:root {
  --paper: #fffaf7;
  --ivory: #f7f0ec;
  --sand: #ece0d9;
  --ink: #3f3934;
  --muted: #796d66;
  --soft: #9a7b72;
  --line: rgba(121, 109, 102, .2);
  --deep: #5f4a44;
  --shadow: 0 22px 60px rgba(63, 57, 52, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 132px; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Raleway, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, blockquote { margin: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}
.container { width: min(1120px, calc(100% - 38px)); margin: 0 auto; }
.eyebrow {
  display: inline-block;
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--soft);
  border-radius: 0;
  background: var(--soft);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
.btn.ghost {
  background: transparent;
  color: var(--soft);
  border-color: rgba(154, 123, 114, .34);
}
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 240, 236, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 400;
}
.brand span {
  color: var(--muted);
  font-size: 12px;
}
nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}
.hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: calc(100vh - 76px);
  background: linear-gradient(90deg, var(--ivory) 0%, var(--ivory) 52%, var(--sand) 52%, var(--sand) 100%);
}
.hero-copy {
  display: flex;
  align-items: center;
  padding: 72px 0 72px max(28px, calc((100vw - 1120px) / 2));
}
.hero-inner { max-width: 620px; padding-right: 44px; }
.hero h1 {
  margin: 14px 0 18px;
  font-size: 68px;
  line-height: .98;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 16px;
}
.hero-media { min-height: 520px; background: var(--sand); overflow: hidden; }
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 981px) {
  .hero {
    min-height: min(680px, calc(100vh - 76px));
  }

  .hero-copy {
    align-items: flex-start;
    padding-top: clamp(18px, 3vh, 30px);
    padding-bottom: 38px;
  }

  .hero-inner {
    transform: none;
  }

  .hero h1 {
    margin-top: 10px;
    margin-bottom: 12px;
  }

  .lead {
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 18px;
    gap: 12px;
  }

  .hero-note {
    margin-top: 12px;
    line-height: 1.38;
  }

  .hero-media,
  .hero-media img {
    min-height: min(680px, calc(100vh - 76px));
  }
}

.trust {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 20px 18px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  display: block;
  color: var(--soft);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.trust-item span {
  color: var(--muted);
  font-size: 14px;
}
section { padding: 78px 0; }
.section-head { max-width: 760px; margin-bottom: 30px; }
.section-head h2 {
  margin: 10px 0 12px;
  font-size: 50px;
  line-height: 1.06;
}
.section-head p { color: var(--muted); font-size: 17px; }
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: center;
}
.panel-grid, .category-grid, .procedure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.panel, .faq-item, .result-card, .proof-summary, .quote-card, .outcome, .step, .location-card, .instagram-feature, .instagram-card, .category-card, .procedure-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
}
.panel, .faq-item, .proof-summary, .quote-card, .outcome, .step, .instagram-card, .category-card, .procedure-card {
  padding: 22px;
}
.panel h3, .faq-item h3, .step h3, .result-card h3, .location-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}
.panel p, .faq-item p, .result-card p, .step p, .outcome span, .location-card p, .instagram-feature p, .instagram-card p, .category-card p, .procedure-card p {
  color: var(--muted);
}
.proof {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: .8fr repeat(3, 1fr);
  gap: 14px;
}
.proof-summary strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.08;
  margin-bottom: 8px;
}
.stars {
  color: var(--soft);
  letter-spacing: .08em;
  font-size: 14px;
  margin-bottom: 8px;
}
.quote-card blockquote {
  margin: 0 0 12px;
  line-height: 1.45;
}
.quote-card cite {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}
.portrait {
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--soft);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
.step p { font-size: 14px; }
.honesty {
  border: 1px solid rgba(154, 123, 114, .32);
  background: rgba(154, 123, 114, .07);
  padding: 24px;
}
.honesty h3, .safety-note h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  margin: 8px 0 10px;
}
.honesty p, .safety-note p { color: var(--muted); max-width: 860px; }
.outcomes {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.outcome strong { display: block; margin-bottom: 6px; }
.outcome span { font-size: 14px; }
.safety-note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(154, 123, 114, .28);
  background: rgba(154, 123, 114, .07);
  padding: 24px;
}
.location-card {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
}
.results { background: var(--paper); }
.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.result-card { padding: 0; overflow: hidden; }
.result-card img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center center;
  background: var(--paper);
  transform: scale(1.035);
  transform-origin: center center;
}
.result-card img.result-img-lifting {
  height: 300px;
  object-fit: contain;
  object-position: center center;
  transform: none;
  background: var(--paper);
}
.result-card div { padding: 18px; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.cta {
  background: var(--deep);
  color: var(--paper);
}
.cta-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.cta h2 {
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 12px;
}
.cta p { color: rgba(255, 250, 247, .76); max-width: 720px; }
.cta .btn {
  background: var(--paper);
  color: var(--deep);
  border-color: var(--paper);
  min-width: 230px;
}
.disclaimer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  max-width: 880px;
}
.instagram-section, .content-library { background: var(--ivory); }
.instagram-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 22px;
  align-items: stretch;
}
.instagram-feature { overflow: hidden; }
.instagram-frame {
  width: 100%;
  min-height: 520px;
  border: 0;
  background: var(--sand);
}
.instagram-feature div { padding: 18px; }
.instagram-feature h3, .instagram-card strong, .category-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.instagram-card, .category-card {
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.instagram-card:hover, .category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 123, 114, .55);
  background: #fffaf3;
}
.content-type {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.category-block + .category-block { margin-top: 42px; }
.home-hero .hero-media img { object-position: center center; }
.home-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.home-kicker span, .procedure-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 13px;
  background: rgba(255, 250, 247, .72);
}
.procedure-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.procedure-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.08;
}
.procedure-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.home-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.home-result {
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
}
.home-result img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: var(--sand);
}
.home-result div { padding: 18px; }
.home-result h3 { font-size: 18px; margin-bottom: 6px; }
.home-result p { color: var(--muted); font-size: 14px; }
.quiet-contact {
  margin-top: 18px;
  color: rgba(255, 250, 247, .68);
  font-size: 13px;
}
.quiet-contact a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
footer {
  background: #4b3b36;
  color: rgba(255, 250, 247, .72);
  padding: 28px 0;
  font-size: 13px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  background: #7d625b;
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}
@media (max-width: 900px) {
  .container { width: min(100% - 30px, 1120px); }
  header .nav > nav > a:not(.btn) { display: none; }
  .hero, .split, .cta-wrap, .instagram-layout { grid-template-columns: 1fr; }
  .hero { min-height: 0; background: var(--ivory); }
  .hero-copy { padding: 44px 15px 34px; }
  .hero-inner { padding-right: 0; }
  .hero h1 { font-size: 45px; line-height: 1; }
  .lead { font-size: 16px; }
  .hero-actions { align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .hero-media { min-height: 0; padding: 0 15px 36px; background: var(--ivory); }
  .hero-media img { height: auto; min-height: 0; border: 1px solid var(--line); }
  .trust-grid, .panel-grid, .steps, .proof-grid, .outcomes, .result-grid, .faq-grid, .safety-note, .location-card, .instagram-grid, .category-grid, .procedure-grid, .home-results { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  section { padding: 58px 0; }
  .section-head h2, .cta h2 { font-size: 35px; }
  .btn, .cta .btn { width: 100%; }
  .result-card img { height: 300px; max-height: 360px; object-fit: cover; }
  .home-result img { height: 300px; max-height: 360px; object-fit: cover; }
  .result-card img.result-img-lifting { height: 220px; max-height: 220px; }
  .instagram-frame { min-height: 480px; }
  .whatsapp-float { left: 14px; right: 14px; text-align: center; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 26px, 1120px); }
  .brand strong { font-size: 20px; }
  .brand span { font-size: 11px; }
  .nav .btn { min-width: 126px; padding-right: 10px; padding-left: 10px; font-size: 12px; }
  .hero h1 { font-size: 40px; }
  .section-head h2, .cta h2 { font-size: 32px; }
  .instagram-frame { min-height: 430px; }
}


.contact-flow {
  background: var(--ivory);
}

.contact-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-step {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 22px;
}

.contact-step span {
  display: inline-flex;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.contact-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-step p {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px) {
  .contact-flow-grid {
    grid-template-columns: 1fr;
  }
}


/* Stage 9: SEO/navigation helpers */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 0;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(80, 55, 48, .18);
}

.breadcrumb a:hover {
  color: var(--ink);
}

.breadcrumb .sep {
  opacity: .45;
}

.internal-trust-card,
.contact-explainer,
.liv-reference-card {
  align-items: center;
}

.liv-reference-card .eyebrow,
.internal-trust-card .eyebrow,
.contact-explainer .eyebrow {
  display: block;
  margin-bottom: 8px;
}

.comparison-section {
  background: var(--paper);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.comparison-card {
  border: 1px solid var(--line);
  background: var(--ivory);
  padding: 24px;
}

.comparison-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.comparison-card p {
  color: var(--muted);
}

.comparison-card .mini-link {
  margin-top: 14px;
}

@media (max-width: 900px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}


/* Etapa 10: navegação mobile e safe area nas páginas internas */
.page-quick-nav {
  display: block;
  position: sticky;
  top: 76px;
  z-index: 19;
  padding: 12px 0;
  background: rgba(255, 250, 247, .96);
  border-bottom: 1px solid var(--line);
}

.page-quick-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.page-quick-nav-inner span {
  color: var(--muted);
  font-size: 12px;
}

.page-quick-nav-inner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(154, 123, 114, .28);
  border-radius: 999px;
  background: #fffaf7;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 900px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .page-quick-nav {
    top: 70px;
  }

  .page-quick-nav-inner {
    justify-content: flex-start;
    gap: 9px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .page-quick-nav-inner::-webkit-scrollbar {
    display: none;
  }

  .page-quick-nav-inner span {
    flex: 0 0 auto;
  }

  .page-quick-nav-inner a {
    flex: 0 0 auto;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-media img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    max-height: 460px;
  }

  .whatsapp-float {
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
  }
}


@media (max-width: 760px) {
  .breadcrumb {
    font-size: .82rem;
  }

  .internal-trust-card,
  .contact-explainer,
  .liv-reference-card {
    gap: 18px;
  }

  .internal-trust-card .btn,
  .contact-explainer .btn,
  .liv-reference-card .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Refino mobile-first de densidade visual em páginas internas — 20260709 */
@media (max-width: 900px) {
  .container { width: min(100% - 24px, 1120px); }
  section { padding: 42px 0; }
  .hero-copy { padding: 32px 12px 20px; }
  .hero h1 { font-size: clamp(34px, 10vw, 42px); line-height: .98; }
  .lead, .section-head p, .hero-note, .cta p, .location-card p, .safety-note p { max-width: none; width: 100%; }
  .lead, .section-head p, .location-card p, .safety-note p, .faq-item p, .step p, .panel p, .procedure-card p, .category-card p { font-size: 14px; line-height: 1.5; }
  .hero-media { padding: 0 12px 24px; }
  .hero-media img { aspect-ratio: 4 / 3; max-height: 330px; object-fit: cover; object-position: center top; }
  .section-head { margin-bottom: 20px; }
  .section-head h2, .cta h2 { font-size: clamp(28px, 8.4vw, 34px); line-height: 1.04; }
  .panel, .faq-item, .proof-summary, .quote-card, .outcome, .step, .instagram-card, .category-card, .procedure-card, .comparison-card, .contact-step, .location-card, .safety-note { padding: 16px; }
  .panel-grid, .steps, .proof-grid, .outcomes, .result-grid, .faq-grid, .category-grid, .procedure-grid, .comparison-grid, .contact-flow-grid { gap: 10px; }
  .result-card img, .home-result img { height: 260px; max-height: 260px; object-fit: cover; }
  .result-card img.result-img-lifting { height: 190px; max-height: 190px; }
  .page-quick-nav { padding: 8px 0; }
  .page-quick-nav-inner a { min-height: 32px; padding: 7px 10px; font-size: 12.5px; }
  .instagram-frame { min-height: 380px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 22px, 1120px); }
  section { padding: 34px 0; }
  .hero h1 { font-size: clamp(31px, 10vw, 38px); }
  .hero-media img { max-height: 300px; }
  .panel, .faq-item, .proof-summary, .quote-card, .outcome, .step, .instagram-card, .category-card, .procedure-card, .comparison-card, .contact-step, .location-card, .safety-note { padding: 15px; }
  .result-card img, .home-result img { height: 230px; max-height: 230px; object-fit: cover; }
  .result-card img.result-img-lifting { height: 170px; max-height: 170px; }
}

/* Refino mobile específico para páginas internas — 20260709 */
@media (max-width: 900px) {
  /* credenciais mais compactas: evita quatro linhas empilhadas antes do conteúdo */
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item {
    padding: 12px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .trust-item strong {
    margin-bottom: 2px;
    font-size: 10.5px;
    letter-spacing: .08em;
  }

  .trust-item span {
    font-size: 12.5px;
    line-height: 1.35;
  }

  /* navegação interna ajuda, mas não deve roubar área útil no mobile */
  .page-quick-nav {
    position: static;
    top: auto;
    padding: 6px 0;
  }

  .page-quick-nav-inner {
    gap: 7px;
  }

  .page-quick-nav-inner span {
    display: none;
  }

  .page-quick-nav-inner a {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 12px;
  }

  /* no hero, só o CTA principal deve parecer botão forte */
  .hero-actions .btn.ghost {
    width: auto;
    min-height: auto;
    margin: 0 auto;
    padding: 4px 2px;
    border: 0;
    background: transparent;
    color: var(--soft);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* imagens de consulta/autoridade menores nas páginas internas */
  .split {
    gap: 22px;
  }

  .split .portrait {
    width: min(100%, 420px);
    margin: 0 auto;
    box-shadow: none;
  }

  .split .portrait img {
    aspect-ratio: 4 / 3;
    max-height: 280px;
    object-fit: cover;
    object-position: center top;
  }

  .results .split .section-head {
    margin-bottom: 14px;
  }

  /* etapas e entregáveis ficam mais escaneáveis em 2 colunas */
  .steps,
  .outcomes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .step,
  .outcome {
    padding: 13px;
  }

  .step span {
    width: 25px;
    height: 25px;
    margin-bottom: 8px;
    font-size: 12px;
  }

  .step h3,
  .outcome strong {
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 1.18;
  }

  .step p,
  .outcome span {
    font-size: 12.8px;
    line-height: 1.38;
  }

  .comparison-card h3,
  .panel h3,
  .faq-item h3,
  .location-card h3,
  .safety-note h3 {
    line-height: 1.12;
  }
}

@media (max-width: 520px) {
  .split .portrait {
    width: 100%;
  }

  .split .portrait img {
    max-height: 240px;
  }

  .steps,
  .outcomes {
    gap: 8px;
  }

  .step,
  .outcome {
    padding: 12px;
  }
}

@media (max-width: 760px) {
  .result-card img.result-img-lifting {
    height: min(240px, 64vw);
    max-height: none;
    object-fit: cover;
    object-position: center center;
    transform: none;
  }
}

/* Ajuste mobile de densidade vertical sem alterar textos, fluxo ou tamanho das fotos — 20260709 */
@media (max-width: 900px) {
  .container {
    width: min(100% - 18px, 1120px);
  }

  .nav {
    min-height: 66px;
    gap: 12px;
  }

  .brand strong {
    font-size: 20px;
    line-height: 1;
  }

  .brand span {
    font-size: 11px;
    line-height: 1.25;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-copy {
    padding-top: 24px;
    padding-bottom: 14px;
  }

  .hero h1 {
    margin-top: 7px;
    margin-bottom: 9px;
  }

  .lead,
  .section-head p,
  .hero-note,
  .cta p,
  .location-card p,
  .safety-note p,
  .faq-item p,
  .step p,
  .panel p,
  .procedure-card p,
  .category-card p,
  .comparison-card p,
  .contact-step p {
    line-height: 1.42;
  }

  .hero-actions {
    gap: 9px;
    margin-top: 14px;
  }

  .hero-note {
    margin-top: 9px;
  }

  .btn {
    min-height: 42px;
    padding: 10px 16px;
  }

  .breadcrumb {
    gap: 6px;
    padding-top: 8px;
    font-size: 12px;
    line-height: 1.25;
  }

  .trust-item {
    padding: 9px 8px;
  }

  .trust-item strong {
    margin-bottom: 1px;
  }

  .section-head {
    margin-bottom: 14px;
  }

  .section-head h2,
  .cta h2 {
    margin-top: 5px;
    margin-bottom: 7px;
  }

  .split,
  .cta-wrap,
  .instagram-layout {
    gap: 16px;
  }

  .panel,
  .faq-item,
  .proof-summary,
  .quote-card,
  .outcome,
  .step,
  .instagram-card,
  .category-card,
  .procedure-card,
  .comparison-card,
  .contact-step,
  .location-card,
  .safety-note {
    padding: 13px;
  }

  .panel-grid,
  .steps,
  .proof-grid,
  .outcomes,
  .result-grid,
  .faq-grid,
  .category-grid,
  .procedure-grid,
  .comparison-grid,
  .contact-flow-grid {
    gap: 8px;
  }

  .panel h3,
  .faq-item h3,
  .step h3,
  .result-card h3,
  .location-card h3,
  .comparison-card h3,
  .contact-step h3,
  .safety-note h3 {
    margin-bottom: 5px;
    line-height: 1.1;
  }

  .contact-step span {
    margin-bottom: 7px;
  }

  .page-quick-nav {
    padding: 4px 0;
  }

  .page-quick-nav-inner {
    gap: 5px;
  }

  .page-quick-nav-inner a {
    min-height: 28px;
    padding: 5px 8px;
  }

  .steps,
  .outcomes {
    gap: 7px;
  }

  .step,
  .outcome {
    padding: 11px;
  }

  .step span {
    margin-bottom: 6px;
  }

  .whatsapp-float {
    padding: 10px 14px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 16px, 1120px);
  }

  section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .nav {
    min-height: 62px;
  }

  .hero-copy {
    padding-top: 20px;
    padding-bottom: 12px;
  }

  .panel,
  .faq-item,
  .proof-summary,
  .quote-card,
  .outcome,
  .step,
  .instagram-card,
  .category-card,
  .procedure-card,
  .comparison-card,
  .contact-step,
  .location-card,
  .safety-note {
    padding: 12px;
  }
}

/* Ajuste de acessibilidade para leitura confortável em telas menores. */
@media (max-width: 900px) {
  section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .lead {
    font-size: 17.5px;
    line-height: 1.62;
  }

  .section-head p,
  .hero-note,
  .cta p,
  .location-card p,
  .safety-note p,
  .faq-item p,
  .step p,
  .panel p,
  .procedure-card p,
  .category-card p,
  .comparison-card p,
  .contact-step p,
  .outcome span,
  .home-result p {
    font-size: 16.5px;
    line-height: 1.68;
  }

  .trust-item span,
  .breadcrumb,
  .page-quick-nav-inner a {
    font-size: 14px;
    line-height: 1.5;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .split,
  .cta-wrap,
  .instagram-layout {
    gap: 26px;
  }

  .panel,
  .faq-item,
  .proof-summary,
  .quote-card,
  .outcome,
  .step,
  .instagram-card,
  .category-card,
  .procedure-card,
  .comparison-card,
  .contact-step,
  .location-card,
  .safety-note {
    padding: 18px;
  }

  .panel-grid,
  .proof-grid,
  .result-grid,
  .faq-grid,
  .category-grid,
  .procedure-grid,
  .comparison-grid,
  .contact-flow-grid {
    gap: 16px;
  }

  .steps,
  .outcomes {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step,
  .outcome {
    padding: 18px;
  }

  .step h3,
  .outcome strong,
  .panel h3,
  .faq-item h3,
  .result-card h3,
  .location-card h3,
  .comparison-card h3,
  .contact-step h3,
  .safety-note h3 {
    margin-bottom: 9px;
    line-height: 1.25;
  }
}

/* Resultados no mobile: mostrar a imagem inteira, sem recorte ou ampliação. */
@media (max-width: 900px) {
  .result-card img,
  .result-card img.result-img-lifting,
  .home-result img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    transform: none;
    background: var(--paper);
  }
}

/* Páginas auxiliares: preservar a imagem completa dos resultados no desktop. */
@media (min-width: 901px) {
  .result-card img,
  .result-card img.result-img-lifting {
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    transform: none;
  }
}

/* Conversão, jornada e acessibilidade das páginas auxiliares — 20260710 */
.text-link {
  color: var(--deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.fit-check {
  padding: 34px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.fit-check-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.fit-check h2 {
  margin: 6px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.06;
}

.fit-check p {
  max-width: 800px;
  color: var(--muted);
}

.fit-check-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 290px;
}

.fit-check-actions .btn {
  min-width: 165px;
}

.contact-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: -4px 0 22px;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-facts > div {
  min-height: 90px;
  padding: 16px;
  background: var(--paper);
}

.contact-facts strong,
.contact-facts span {
  display: block;
}

.contact-facts strong {
  margin-bottom: 4px;
  color: var(--soft);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-facts span {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
}

/* FAQ colapsável: reduz densidade e mantém todo o conteúdo no HTML. */
details.faq-item {
  padding: 0;
  overflow: clip;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.faq-item[open] summary::after { content: "–"; }

.faq-item summary h3 {
  margin: 0;
  font-size: 18px;
}

.faq-answer {
  padding: 0 22px 22px;
  animation: reveal-answer .18s ease-out;
}

@keyframes reveal-answer {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.privacy-settings {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* Página unificada de mama */
.complaint-section { background: var(--ivory); }

.complaint-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.complaint-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.complaint-card:hover {
  transform: translateY(-3px);
  border-color: rgba(154, 123, 114, .52);
  box-shadow: 0 16px 38px rgba(63, 57, 52, .08);
}

.complaint-card span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.complaint-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
}

.complaint-card small {
  color: var(--deep);
  font-size: 13px;
  font-weight: 700;
}

.procedure-hub-section { background: var(--paper); }

.procedure-disclosures {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.procedure-disclosure {
  border: 1px solid var(--line);
  background: var(--ivory);
  scroll-margin-top: 130px;
}

.procedure-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 96px;
  padding: 24px 26px;
  cursor: pointer;
  list-style: none;
}

.procedure-disclosure summary::-webkit-details-marker { display: none; }

.procedure-disclosure summary span:first-child {
  display: grid;
  gap: 3px;
}

.procedure-disclosure summary small {
  color: var(--soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.procedure-disclosure summary strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.04;
}

.disclosure-action {
  color: var(--deep);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.procedure-disclosure[open] .disclosure-action::before { content: "Fechar · "; }
.procedure-disclosure[open] .disclosure-action { font-size: 0; }
.procedure-disclosure[open] .disclosure-action::after { content: "Fechar informações"; font-size: 13px; }

.procedure-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.procedure-detail > div {
  min-height: 150px;
  padding: 22px 24px;
  background: var(--paper);
}

.procedure-detail h3 {
  margin-bottom: 7px;
  font-size: 16px;
}

.procedure-detail p {
  color: var(--muted);
}

.procedure-cta {
  grid-column: 1 / -1;
  justify-self: start;
  margin: 18px 22px 22px;
}

.result-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.consultation-section { background: var(--ivory); }

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.redirect-card {
  width: min(620px, 100%);
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.redirect-card h1 {
  margin: 10px 0 14px;
  font-size: clamp(42px, 8vw, 68px);
  line-height: 1;
}

.redirect-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

/* Destaque discreto quando uma campanha abre diretamente um procedimento. */
.procedure-disclosure.campaign-target {
  border-color: rgba(154, 123, 114, .72);
  box-shadow: 0 0 0 4px rgba(154, 123, 114, .09);
}

@media (max-width: 980px) {
  .fit-check-inner,
  .fit-check-actions {
    grid-template-columns: 1fr;
  }

  .fit-check-inner { gap: 18px; }
  .fit-check-actions { min-width: 0; justify-content: flex-start; flex-wrap: wrap; }
  .contact-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .complaint-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .result-grid-three { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .fit-check { padding: 28px 0; }
  .fit-check h2 { font-size: 31px; }
  .fit-check-actions { align-items: stretch; }
  .fit-check-actions .btn { width: 100%; }
  .contact-facts { grid-template-columns: 1fr 1fr; }
  .contact-facts > div { min-height: 82px; padding: 13px; }
  .complaint-grid { grid-template-columns: 1fr; gap: 10px; }
  .complaint-card { min-height: 0; padding: 19px; }
  .complaint-card strong { font-size: 25px; }
  .procedure-disclosure summary { min-height: 84px; padding: 19px; }
  .procedure-detail { grid-template-columns: 1fr; }
  .procedure-detail > div { min-height: 0; padding: 18px; }
  .procedure-cta { width: calc(100% - 36px); margin: 16px 18px 18px; }
  .faq-item summary { min-height: 68px; padding: 18px; }
  .faq-answer { padding: 0 18px 18px; }
  .redirect-card { padding: 28px 20px; }
}

@media (max-width: 420px) {
  .contact-facts { grid-template-columns: 1fr; }
  .contact-facts > div { min-height: 0; }
  .disclosure-action { font-size: 0; }
  .disclosure-action::after { content: "+"; font-size: 26px; font-family: Georgia, "Times New Roman", serif; }
  .procedure-disclosure[open] .disclosure-action::after { content: "–"; font-size: 26px; }
}

/* Política de privacidade */
.legal-page { background: var(--ivory); }
.legal-container { width: min(820px, 100%); }
.legal-container h1 { margin: 12px 0 8px; font-size: clamp(44px, 7vw, 72px); line-height: .98; }
.legal-updated { color: var(--muted); font-size: 14px; }
.legal-summary { margin: 34px 0; padding: 24px; border: 1px solid rgba(154,123,114,.32); background: var(--paper); }
.legal-summary strong { display: block; margin-bottom: 7px; }
.legal-container h2 { margin: 36px 0 10px; font-size: 29px; line-height: 1.15; }
.legal-container p { color: var(--muted); font-size: 17px; }
.legal-container p + p { margin-top: 12px; }
.legal-container a { color: var(--deep); text-decoration: underline; text-underline-offset: 3px; }
.privacy-reset-inline { margin-top: 16px; }
footer a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width:760px){.legal-container h1{font-size:42px}.legal-container h2{font-size:25px}.legal-container p{font-size:16.5px;line-height:1.7}}

/* Biblioteca de conteúdos: descoberta por tema e busca */
.content-discovery { background: #fffaf7; padding-bottom: 34px; }
.section-head.compact { max-width: 760px; margin-bottom: 22px; }
.content-search-wrap { max-width: 760px; display: grid; gap: 8px; }
.content-search-wrap label { font-weight: 700; color: var(--ink); }
.content-search-wrap input {
  width: 100%; min-height: 50px; padding: 12px 16px; border-radius: 14px;
  border: 1px solid rgba(80,55,48,.2); background: #fff; color: var(--ink);
  font: inherit; box-shadow: 0 8px 24px rgba(55,35,28,.04);
}
.content-search-wrap input:focus { outline: 3px solid rgba(147,105,88,.18); border-color: rgba(80,55,48,.45); }
.content-search-status { margin: 0; color: var(--muted); font-size: 13px; }
.content-topic-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.content-topic-nav a {
  display: inline-flex; align-items: center; min-height: 38px; padding: 8px 12px;
  border: 1px solid rgba(80,55,48,.16); border-radius: 999px; background: #fff;
  color: var(--ink); text-decoration: none; font-size: 13px; font-weight: 650;
}
.content-topic-nav a:hover { border-color: rgba(80,55,48,.4); transform: translateY(-1px); }
.category-block { scroll-margin-top: 92px; }
.category-card[hidden], .category-block[hidden], .content-no-results[hidden] { display: none !important; }
.content-no-results { padding: 24px; border: 1px dashed rgba(80,55,48,.24); border-radius: 16px; text-align: center; color: var(--muted); }
.privacy-link { appearance: none; border: 0; background: transparent; padding: 0; color: inherit; font: inherit; text-decoration: underline; cursor: pointer; }
@media(max-width:760px){
  .content-discovery { padding-bottom: 26px; }
  .content-topic-nav { gap: 7px; }
  .content-topic-nav a { font-size: 12px; min-height: 36px; padding: 7px 10px; }
}

/* Consolidação mobile 2026-07-10: páginas auxiliares, artigos e hub. */
.content-search-wrap {
  margin-bottom: 28px;
}

.content-intent-card[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  header .nav {
    min-height: 64px;
    gap: 8px;
    padding: 6px 0;
  }

  header .brand {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  header .brand strong {
    overflow: hidden;
    font-size: clamp(18px, 4.9vw, 20px);
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  header .brand span {
    display: block;
    overflow: hidden;
    font-size: clamp(8px, 2.2vw, 9px);
    letter-spacing: -.015em;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  header .nav nav {
    flex: 0 0 auto;
    gap: 0;
  }

  header .nav-cta {
    min-width: 0;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 11.5px;
    line-height: 1;
    white-space: nowrap;
  }

  section {
    padding-top: clamp(42px, 11vw, 52px);
    padding-bottom: clamp(42px, 11vw, 52px);
  }

  .hero-copy {
    padding: 30px 12px 18px;
  }

  .hero h1 {
    margin: 9px 0 13px;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.02;
    text-wrap: balance;
  }

  .hero .lead {
    font-size: 16.25px;
    line-height: 1.62;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-actions .btn {
    min-height: 50px;
  }

  .hero-note {
    margin-top: 11px;
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-media {
    padding: 0 12px 30px;
  }

  .hero-media img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    object-fit: cover;
    object-position: center top;
  }

  .section-head h2,
  .cta h2 {
    margin-bottom: 11px;
    font-size: clamp(31px, 8.8vw, 38px);
    line-height: 1.06;
    text-wrap: balance;
  }

  .section-head p,
  .cta p,
  .location-card p,
  .safety-note p,
  .faq-item p,
  .step p,
  .panel p,
  .procedure-card p,
  .category-card p,
  .content-intent-card p,
  .comparison-card p,
  .contact-step p,
  .outcome span,
  .home-result p {
    font-size: 16px;
    line-height: 1.64;
  }

  .page-quick-nav {
    padding: 9px 0;
  }

  .page-quick-nav-inner {
    scroll-padding-inline: 12px;
  }

  .page-quick-nav-inner a {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .panel,
  .faq-item,
  .proof-summary,
  .quote-card,
  .outcome,
  .step,
  .instagram-card,
  .category-card,
  .procedure-card,
  .comparison-card,
  .contact-step,
  .location-card,
  .safety-note,
  .content-intent-card {
    padding: 18px;
  }

  .result-card img,
  .result-card img.result-img-lifting,
  .home-result img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    transform: none;
    background: var(--paper);
  }

  .result-card > div {
    padding: 18px;
  }

  .complaint-card,
  .mini-link,
  .text-link {
    touch-action: manipulation;
  }

  .complaint-card small,
  .mini-link,
  .article-related-link,
  .content-intent-card .text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .whatsapp-float {
    min-height: 52px;
    border-radius: 999px;
    box-shadow: 0 12px 34px rgba(63, 42, 35, .22);
  }

  .content-hub-hero,
  .article-hero {
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .content-hub-hero h1,
  .article-hero h1 {
    margin: 10px 0 16px;
    font-size: clamp(36px, 10vw, 43px);
    line-height: 1.02;
    text-wrap: balance;
  }

  .article-meta {
    font-size: 14px;
    line-height: 1.55;
  }

  .content-search-wrap {
    margin-bottom: 24px;
  }

  .content-search-wrap input {
    min-height: 52px;
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  header .brand strong {
    font-size: 16px;
  }

  header .nav .nav-cta {
    width: 112px;
    min-width: 112px;
    min-height: 48px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 10.5px;
    line-height: 1.2;
    white-space: normal;
  }
}
