/*
  Camada compartilhada de experiência mobile, acessibilidade e componentes.
  Mantida separada dos estilos históricos para facilitar futuras campanhas e testes.
*/

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 8px;
  background: #3f3934;
  color: #fff;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, summary, input, textarea, select):focus-visible {
  outline: 3px solid rgba(125, 98, 91, .48);
  outline-offset: 3px;
}

button {
  font: inherit;
}

.mobile-disclosure-toggle,
.mobile-scroll-hint,
.mobile-menu-toggle {
  display: none;
}

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

.result-card img.result-img-wide,
.result-card img.result-img-otoplasty,
.result-card img.result-img-chin {
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transform: none;
  background: #fffaf7;
}

.result-pair-mobile {
  display: none;
}

.result-pair-desktop img,
.result-pair-mobile img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: none;
}

.result-pair-mobile figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #fffaf7;
}

.result-pair-mobile figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(63, 57, 52, .82);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.results-placeholder {
  padding: 28px;
  border: 1px dashed rgba(121, 109, 102, .32);
  background: rgba(255, 250, 247, .6);
  color: #796d66;
}

/* FAQ da página inicial passa a usar o mesmo padrão expansível das páginas internas. */
details.home-faq-item {
  padding: 0;
  overflow: hidden;
}

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

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

details.home-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #9a7b72;
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

details.home-faq-item[open] summary::after {
  content: "−";
}

details.home-faq-item summary h3 {
  margin: 0;
}

details.home-faq-item .faq-answer {
  padding: 0 24px 22px;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    overflow-wrap: break-word;
  }

  /*
    Conteúdo essencial permanece visível; detalhes secundários ficam recolhidos.
    Sem JavaScript, todo o conteúdo continua normalmente disponível.
  */
  .mobile-disclosure-toggle {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 12px 0 0;
    padding: 12px 14px;
    border: 1px solid rgba(121, 109, 102, .22);
    border-radius: 12px;
    background: rgba(255, 250, 247, .78);
    color: inherit;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
  }

  .mobile-disclosure-toggle::after {
    content: "+";
    flex: 0 0 auto;
    color: #9a7b72;
    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
  }

  .mobile-disclosure-toggle[aria-expanded="true"]::after {
    content: "−";
  }

  .mobile-disclosure-panel,
  [data-mobile-collapse-target] {
    margin-top: 14px;
  }

  .mobile-disclosure-panel.is-collapsed,
  [data-mobile-collapse-target].is-collapsed {
    display: none !important;
  }

  section[data-mobile-collapse] .section-head {
    margin-bottom: 0;
  }

  section[data-mobile-collapse] .section-head + .mobile-disclosure-toggle {
    margin-top: 14px;
  }

  /* Linhas horizontais reduzem rolagem sem esconder opções importantes. */
  [data-mobile-scroll].mobile-carousel {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 12px !important;
    width: calc(100% + 8px);
    margin-right: -8px;
    padding: 2px 8px 14px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  [data-mobile-scroll].mobile-carousel > * {
    flex: 0 0 min(86vw, 350px);
    scroll-snap-align: start;
  }

  .mobile-scroll-hint {
    display: block;
    margin: 2px 0 10px;
    color: #796d66;
    font-size: 12px;
    font-weight: 600;
    text-align: right;
  }

  .result-grid.result-grid-two {
    display: flex;
  }

  .result-card img.result-img-wide,
  .result-card img.result-img-otoplasty,
  .result-card img.result-img-chin {
    width: 100%;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    transform: none !important;
  }

  .result-pair-desktop {
    display: none;
  }

  .result-pair-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(121, 109, 102, .14);
  }

  .result-pair-mobile img {
    display: block;
    aspect-ratio: 700 / 424;
  }

  details.home-faq-item summary {
    min-height: 64px;
    padding: 17px 16px;
  }

  details.home-faq-item .faq-answer {
    padding: 0 16px 17px;
  }

  details.home-faq-item summary h3 {
    font-size: 23px;
    line-height: 1.12;
  }

  .results-placeholder {
    padding: 18px;
  }
}


@media (min-width: 761px) {
  .mobile-disclosure-panel.is-collapsed,
  [data-mobile-collapse-target].is-collapsed {
    display: block !important;
  }
}

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

/* Ajustes específicos para galerias compostas e chips horizontais. */
.result-card .result-pair-desktop,
.result-card .result-pair-mobile {
  padding: 0;
}

@media (max-width: 760px) {
  .result-pair-mobile img {
    width: 100%;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    transform: none !important;
  }

  .procedure-links[data-mobile-scroll] > *,
  .page-quick-nav-inner[data-mobile-scroll] > * {
    flex: 0 0 auto;
  }
}

.result-context-note {
  max-width: 760px;
  margin-top: 16px;
}

.result-context-note summary {
  min-height: 58px;
}

@media (min-width: 761px) {
  .result-grid.result-grid-two .result-card-featured,
  .result-grid.result-grid-two .result-card-landscape {
    grid-column: 1 / -1;
  }

  .result-grid.result-grid-two .result-card-landscape {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
    align-items: center;
  }

  .result-grid.result-grid-two .result-card-landscape > img {
    width: 100%;
    height: auto;
  }
}

/* ===== Ajustes estruturais 2026-07-10: mobile, conversão e conteúdo ===== */
html, body {
  max-width: 100%;
  overflow-x: clip;
}

/* Impede que grids com carrosséis internos ampliem a largura do documento. */
.split,
.split > *,
.container,
.mobile-disclosure-panel,
[data-mobile-collapse-target],
[data-mobile-scroll],
.result-grid,
.result-card,
.procedure-disclosures,
.procedure-detail {
  min-width: 0;
  max-width: 100%;
}

/* A foto da Clínica LIV é horizontal; não deve herdar o recorte vertical de retratos. */
.split .portrait.clinic-portrait img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.whatsapp-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .2s ease, transform .2s ease;
}

body.show-whatsapp-float .whatsapp-float {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.has-cookie-consent .whatsapp-float {
  opacity: 0 !important;
  pointer-events: none !important;
}

body.mobile-gallery-active .whatsapp-float,
body.mobile-media-viewing .whatsapp-float {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(14px) !important;
}

.footer-grid {
  align-items: flex-start;
}

.footer-navigation {
  flex: 1 1 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-bottom: 24px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-nav-group strong {
  color: #fffaf7;
  font-size: 13px;
  letter-spacing: .04em;
}

.footer-nav-group a {
  color: rgba(255,250,247,.76);
  text-decoration: none;
}

.footer-nav-group a:hover,
.footer-nav-group a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Conteúdos próprios */
.content-hub-hero,
.article-hero {
  padding: 76px 0 48px;
  background: var(--ivory);
}

/* O seletor histórico `header` fixa a navegação; o cabeçalho editorial não deve
   herdar esse comportamento, pois encobre o artigo durante a rolagem. */
.article-page > .article-hero {
  position: static;
  top: auto;
  z-index: auto;
  width: auto;
  backdrop-filter: none;
  border-bottom: 0;
  box-shadow: none;
}

.content-hub-hero h1,
.article-hero h1 {
  max-width: 900px;
  margin: 10px 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
}

.content-hub-hero .lead,
.article-hero .lead {
  max-width: 820px;
}

.content-hub-list {
  background: var(--paper);
}

.content-intent-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 880px;
}

.content-intent-card {
  display: grid;
  grid-template-columns: minmax(210px, .72fr) minmax(280px, 1fr) auto;
  align-items: center;
  gap: 12px 24px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.content-intent-card .eyebrow {
  grid-column: 1 / -1;
}

.content-intent-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.content-intent-card p {
  margin: 0;
  color: var(--muted);
}

.content-intent-card .text-link {
  white-space: nowrap;
}

.social-library-link {
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--ivory);
}

.social-library-link summary {
  cursor: pointer;
  font-weight: 700;
}

.article-page {
  background: var(--paper);
}

.article-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  gap: 38px;
  align-items: start;
  padding-top: 52px;
  padding-bottom: 72px;
}

.article-body {
  width: 100%;
  max-width: 820px;
}

.article-block {
  padding: 0 0 30px;
  margin: 0 0 30px;
  border-bottom: 1px solid var(--line);
}

.article-block h2 {
  margin-bottom: 12px;
  font-size: clamp(27px, 3vw, 37px);
  line-height: 1.08;
}

.article-block p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.article-safety {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--ivory);
}

.article-aside {
  position: static;
  width: 100%;
}

.article-aside-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 28px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--ivory);
}

.article-aside-card .eyebrow,
.article-aside-card h2,
.article-aside-card p {
  grid-column: 1;
}

.article-aside-card h2 {
  margin: 2px 0 4px;
  font-size: 25px;
}

.article-aside-card .btn {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: auto;
  margin: 0;
}

.article-aside-card .text-link {
  grid-column: 1 / -1;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .footer-navigation { grid-template-columns: 1fr 1fr; }
  .content-intent-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 24px; }
  .article-aside { position: static; }
  .content-intent-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .content-intent-card .eyebrow,
  .content-intent-card h2,
  .content-intent-card p,
  .content-intent-card .text-link {
    grid-column: 1;
  }
  .content-intent-card .text-link { white-space: normal; }
  .article-aside-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .article-aside-card .eyebrow,
  .article-aside-card h2,
  .article-aside-card p,
  .article-aside-card .btn,
  .article-aside-card .text-link {
    grid-column: 1;
    grid-row: auto;
  }
  .article-aside-card .btn {
    width: 100%;
    margin: 8px 0 2px;
  }
}

@media (max-width: 760px) {
  html, body { overflow-x: hidden; }

  [data-mobile-scroll].mobile-carousel {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    padding-right: 4px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  [data-mobile-scroll].mobile-carousel > * {
    flex-basis: min(82vw, 326px) !important;
    max-width: min(82vw, 326px) !important;
  }

  .result-pair-mobile {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1px;
  }

  .result-pair-mobile img {
    aspect-ratio: auto !important;
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
  }

  .result-pair-mobile figure {
    min-width: 0;
  }

  .footer-navigation { grid-template-columns: 1fr 1fr; gap: 20px 14px; }
  .content-hub-hero, .article-hero { padding: 38px 0 28px; }
  .content-hub-hero h1, .article-hero h1 { font-size: 42px; }
  .content-intent-card { padding: 18px; }
  .content-intent-card h2 { font-size: 22px; line-height: 1.22; }
  .article-layout { padding-top: 28px; padding-bottom: 42px; }
  .article-block p { font-size: 16px; line-height: 1.65; }
  .article-aside-card { padding: 20px; }
  .article-aside-card h2 { font-size: 23px; line-height: 1.2; }
}

@media (max-width: 520px) {
  .footer-navigation { grid-template-columns: 1fr; }
}

.dedicated-page-link {
  display: inline-flex;
  margin: 4px 14px 18px;
}

.article-references {
  margin: 8px 0 30px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,250,247,.55);
}

.article-references summary {
  cursor: pointer;
  font-weight: 700;
}

.article-references p,
.article-references ul {
  color: var(--muted);
  font-size: 14px;
}

.article-references a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-related {
  padding-top: 8px;
}

.article-related h2 {
  margin-bottom: 16px;
  font-size: 30px;
}

.article-related-grid {
  display: grid;
  gap: 10px;
}

.article-related-link {
  display: block;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-weight: 700;
  text-decoration: none;
}

.article-related-link::after {
  content: " →";
  color: #9a7b72;
}

.contact-price-note {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,250,247,.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}


/* Vídeos curados no main — integração discreta, sem alterar a estrutura da página. */
.curated-video-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #875845;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  cursor: pointer;
}
.curated-video-link::before {
  content: "▶";
  font-size: 10px;
  text-decoration: none;
}
.curated-video-link:hover { color: #633c30; }
.curated-video-link:focus-visible {
  outline: 3px solid rgba(135, 88, 69, .28);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq-video-link { margin-top: 8px; }

.curated-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(25, 18, 16, .78);
  backdrop-filter: blur(8px);
}
.curated-video-modal.is-open { display: flex; }
.curated-video-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: 94vh;
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
}
.curated-video-media {
  display: flex;
  align-items: center;
  background: #111;
}
.curated-video-media video {
  display: block;
  width: 100%;
  max-height: 90vh;
  background: #000;
}
.curated-video-copy {
  align-self: center;
  padding: clamp(26px, 4vw, 46px);
}
.curated-video-copy h2 {
  margin: 8px 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}
.curated-video-copy p {
  color: #5f5652;
  line-height: 1.7;
}
.curated-video-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .14);
  font-size: 24px;
  cursor: pointer;
}
.curated-video-close:focus-visible {
  outline: 3px solid #8b5a49;
  outline-offset: 3px;
}
body.curated-video-open { overflow: hidden; }

@media (max-width: 760px) {
  .curated-video-dialog {
    grid-template-columns: 1fr;
    max-width: 520px;
    max-height: 98vh;
    border-radius: 16px;
  }
  .curated-video-modal { padding: 8px; }
  .curated-video-media video { max-height: 64vh; }
  .curated-video-copy { padding: 20px; }
  .curated-video-copy h2 { font-size: 26px; }
}

/* Primeiro passo do contato permanece visível no mobile; os detalhes seguintes ficam sob demanda. */
@media (max-width: 760px) {
  section.contact-flow .mobile-disclosure-panel.mobile-preview-first.is-collapsed {
    display: block !important;
    margin-top: 14px;
  }

  section.contact-flow .mobile-disclosure-panel.mobile-preview-first.is-collapsed > :not(.contact-flow-grid) {
    display: none !important;
  }

  section.contact-flow .mobile-disclosure-panel.mobile-preview-first.is-collapsed .contact-flow-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    margin-top: 0;
  }

  section.contact-flow .mobile-disclosure-panel.mobile-preview-first.is-collapsed .contact-step:not(:first-child),
  .contact-flow-section .contact-flow-grid.mobile-preview-first.is-collapsed > article:not(:first-child) {
    display: none !important;
  }

  .contact-flow-section .contact-flow-grid.mobile-preview-first.is-collapsed {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  section.contact-flow .mobile-disclosure-panel.mobile-preview-first + .mobile-disclosure-toggle,
  .contact-flow-section .contact-flow-grid.mobile-preview-first + .mobile-disclosure-toggle {
    margin-top: 12px;
  }
}


/* FACIAL JOURNEY OPTIMIZATION 2026-07-10 */

.approach-grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(360px,1.08fr); grid-template-areas: "copy media" "points media"; gap: 28px 56px; align-items: start; }
.approach-copy { grid-area: copy; }
.approach-copy h2 { margin: 10px 0 14px; font-size: clamp(38px,4.5vw,56px); line-height: 1.04; }
.approach-copy p { color: var(--muted); }
.approach-copy p + p { margin-top: 12px; }
.approach-points { grid-area: points; display: grid; gap: 0; }
.approach-points > div { display: grid; grid-template-columns: 150px minmax(0,1fr); gap: 18px; padding: 15px 0; border-top: 1px solid var(--line); }
.approach-points strong { color: var(--ink); font-family: Georgia,"Times New Roman",serif; font-size: 19px; font-weight: 400; }
.approach-points span { color: var(--muted); }
.approach-media { grid-area: media; margin: 0; overflow: hidden; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
.approach-media img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }
.approach-media figcaption { padding: 12px 14px; color: var(--muted); font-size: 13px; }

.result-grid-face-focus { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.facial-results-home .result-card img.result-img-blefaro { height: 300px; object-fit: contain; transform: none; padding: 10px; }
.proof-layout-three { grid-template-columns: minmax(0, .72fr) minmax(0, 1.6fr); }
.proof-reviews-three { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.proof-reviews-three .quote-card { min-height: 245px; }
.journey-grid-five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.journey-grid-five > div { min-width: 0; }
.proof-grid-curated { grid-template-columns: .82fr repeat(3, minmax(0, 1fr)); }
.proof-grid-curated .quote-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 230px; }
.proof-grid-curated .review-source { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; }
.result-context-card { border: 1px solid var(--line); background: rgba(255,250,247,.78); padding: clamp(24px,4vw,42px); display: flex; flex-direction: column; justify-content: center; }
.result-context-card h3 { margin: 8px 0 12px; font-family: Georgia,"Times New Roman",serif; font-size: clamp(26px,3vw,38px); font-weight: 400; line-height: 1.1; }
.result-context-card p { color: var(--muted); }
.result-grid-single { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
.result-grid-single .result-card img.result-img-blefaro { height: 460px; object-fit: contain; transform: none; padding: 12px; }
.surgical-journey-section { background: var(--ivory, var(--sand)); border-top: 1px solid var(--line); }
.surgical-journey-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 14px; }
.surgical-journey-grid article { border: 1px solid var(--line); background: var(--paper); padding: 22px; }
.surgical-journey-grid article > span { display: inline-block; margin-bottom: 10px; color: var(--soft); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.surgical-journey-grid h3 { margin: 0 0 8px; font-family: Georgia,"Times New Roman",serif; font-size: 21px; font-weight: 400; line-height: 1.15; }
.surgical-journey-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.recovery-timeline-section { background: var(--paper); border-top: 1px solid var(--line); }
.recovery-timeline-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.recovery-card { border-top: 3px solid var(--soft); background: var(--ivory, var(--sand)); padding: 24px; }
.recovery-card strong { display: block; margin-bottom: 10px; font-family: Georgia,"Times New Roman",serif; font-size: 23px; font-weight: 400; line-height: 1.15; }
.recovery-card p { margin: 0; color: var(--muted); }
.recovery-note { margin-top: 18px; padding: 18px 20px; border: 1px solid rgba(154,123,114,.28); background: rgba(154,123,114,.07); }
.recovery-note p { margin: 0 0 8px; color: var(--muted); }
.integrated-safety-section { background: var(--paper); }
.hero-note { max-width: 720px; }
.contact-facts { align-items: stretch; }
.contact-facts > div { min-width: 0; }
.article-body .article-block + .article-block { margin-top: 34px; }
.article-body .article-block h2 { margin-bottom: 10px; }
.article-body .article-block p { color: var(--muted); }

.article-media {
  margin: 0 0 34px;
  padding: 16px;
  border: 1px solid rgba(49, 63, 59, .14);
  border-radius: 20px;
  background: #fff;
}

.article-media video {
  display: block;
  width: min(100%, 420px);
  max-height: 680px;
  margin: 0 auto;
  border-radius: 14px;
  background: #17201d;
}

.article-media figcaption {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 1080px) {
  .journey-grid-five, .surgical-journey-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .proof-reviews-three, .proof-grid-curated { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .proof-grid-curated .proof-summary { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; line-height: 1.66; }
  p, li, blockquote, .hero-note, .section-head p, .contact-step p, .panel p, .faq-item p, .outcome span, .result-card p, .recovery-card p, .surgical-journey-grid p { font-size: 16px !important; line-height: 1.62; }
  .eyebrow { color: #805f56; font-size: 12px; }
  .hero h1 { font-size: clamp(38px, 11vw, 48px); line-height: 1.03; }
  .hero-note { color: #695d57; }
  .btn { min-height: 50px; font-size: 15px; }
  .result-grid-face-focus, .proof-reviews-three, .journey-grid-five, .proof-grid-curated, .surgical-journey-grid, .recovery-timeline-grid, .result-grid-single { grid-template-columns: 1fr; }
  .proof-layout-three { grid-template-columns: 1fr; }
  .proof-reviews-three .quote-card, .proof-grid-curated .quote-card { min-height: 0; }
  .facial-results-home .result-card img.result-img-lifting { height: auto !important; min-height: 190px; }
  .facial-results-home .result-card img.result-img-blefaro, .result-grid-single .result-card img.result-img-blefaro { height: auto; max-height: 440px; }
  .surgical-journey-grid article, .recovery-card, .result-context-card { padding: 20px; }
  .surgical-journey-grid h3 { font-size: 23px; }
  .recovery-card strong { font-size: 24px; }

  .approach-grid { grid-template-columns: 1fr; grid-template-areas: "copy" "points" "media"; gap: 24px; }
  .approach-copy h2 { font-size: 36px; }
  .approach-points > div { grid-template-columns: 1fr; gap: 5px; }
  .approach-media img { aspect-ratio: 4 / 5; height: auto !important; }
  .contact-facts { grid-template-columns: 1fr 1fr !important; }
  .contact-facts > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 420px) {
  .contact-facts { grid-template-columns: 1fr !important; }
  .contact-facts > div:last-child { grid-column: auto; }
}

/* HOME HÍBRIDA — legibilidade e navegação final — 2026-07-11 */
.journey-grid-expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.results-section .result-card > div.result-img-body-frame {
  aspect-ratio: 20 / 7;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  background: var(--paper);
}

.results-section .result-card > div.result-img-body-frame .result-img-body {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: initial;
  transform: none;
}

.proof-reviews {
  align-items: stretch;
}

.proof-reviews .quote-card {
  height: 100%;
}

.explore-section {
  padding: clamp(70px, 8vw, 106px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.explore-section .section-head {
  max-width: 760px;
  margin-inline: auto;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.explore-card {
  display: flex;
  min-width: 0;
  min-height: 330px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--sand);
}

.explore-card > span {
  color: #76564e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.explore-card h3 {
  margin: 22px 0 20px;
  font-size: 27px;
  line-height: 1.12;
}

.explore-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: auto;
}

.explore-links a {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: #654b44;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.explore-links a:last-child {
  border-bottom: 1px solid var(--line);
}

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

@media (max-width: 1080px) {
  .explore-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  /* Público maduro: texto funcional nunca depende de fonte pequena ou contraste suave. */
  .hero .lead,
  .doctor-copy p,
  .signature-copy p,
  .section-head p,
  .path-card p,
  .other-procedure-card p,
  .principle-grid p,
  .liv-copy > p,
  .liv-feature p,
  .journey-grid span,
  .result-card p,
  .proof-copy p,
  .quote-card blockquote,
  .content-card p,
  .instagram-copy p,
  .faq-answer p,
  .contact-flow-grid p,
  .cta p,
  .explore-section .section-head p {
    color: #5d4b45;
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .hero-note,
  .review-source,
  .result-card .disclaimer,
  figcaption,
  .credentials span,
  .location-box span,
  .content-type {
    color: #6d554e;
    font-size: 14px !important;
    line-height: 1.5;
  }

  .eyebrow,
  .path-card > span,
  .other-procedure-card > span,
  .explore-card > span {
    color: #76564e;
    font-size: 13px;
  }

  .faq-item summary h3 {
    font-size: 17px !important;
    line-height: 1.35;
  }

  .text-link,
  .mini-link,
  .other-primary,
  .explore-links a {
    font-size: 15px;
  }

  .journey-grid-expanded {
    grid-template-columns: 1fr;
  }

  .results-section .result-card > div.result-img-body-frame .result-img-body {
    min-height: 0;
  }

  .proof-reviews {
    display: grid !important;
    grid-template-columns: 1fr !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  .proof-reviews .quote-card {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    scroll-snap-align: none !important;
  }

  .explore-section {
    padding: 64px 0;
  }

  .explore-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .explore-card {
    min-height: 0;
    padding: 22px;
  }

  .explore-card h3 {
    margin: 16px 0 18px;
    font-size: 25px;
  }
}

/* MOBILE CANÔNICO 2026-07-11
   Regras críticas reunidas aqui: cabeçalho, menu, grades e ritmo visual. */
@media (max-width: 900px) {
  body > header .nav {
    position: relative;
    min-height: 70px;
    gap: 10px;
    padding: 7px 0;
  }

  body > header .brand {
    min-width: 0;
    flex: 1 1 auto;
    overflow: visible;
  }

  body > header .brand strong {
    overflow: visible;
    font-size: clamp(17px, 4.8vw, 20px);
    line-height: 1.08;
    text-overflow: clip;
    white-space: normal;
  }

  body > header .brand span {
    display: block;
    overflow: visible;
    margin-top: 3px;
    color: #655750;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
    text-overflow: clip;
    white-space: normal;
  }

  body > header:not(.mobile-menu-enabled) .nav > nav {
    flex: 0 0 auto;
  }

  body > header:not(.mobile-menu-enabled) .nav > nav .nav-cta {
    width: auto;
    min-width: 118px;
    min-height: 46px;
    padding: 9px 11px;
    font-size: 11.5px;
    line-height: 1.2;
    white-space: normal;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 2;
    width: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 5px;
    border: 1px solid rgba(80, 55, 48, .18);
    border-radius: 12px;
    background: #fffaf7;
    color: var(--ink);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
  }

  .mobile-menu-toggle > span:first-child {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 19px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: background .18s ease;
  }

  .mobile-menu-toggle > span:first-child::before,
  .mobile-menu-toggle > span:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    width: 19px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: top .18s ease, transform .18s ease;
  }

  .mobile-menu-toggle > span:first-child::before { top: -6px; }
  .mobile-menu-toggle > span:first-child::after { top: 6px; }

  .mobile-menu-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-menu-enabled .nav > nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    z-index: 30;
    display: none;
    max-height: calc(100vh - 90px);
    padding: 10px;
    border: 1px solid rgba(80, 55, 48, .15);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    background: #fffaf7;
    box-shadow: 0 18px 36px rgba(63, 57, 52, .14);
    overflow-y: auto;
  }

  .mobile-menu-enabled.mobile-menu-open .nav > nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .mobile-menu-enabled .nav > nav > a,
  .mobile-menu-enabled .nav > nav > a:not(.btn) {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 11px 13px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-menu-enabled .nav > nav > a:not(.btn):hover,
  .mobile-menu-enabled .nav > nav > a:not(.btn):focus-visible {
    background: #f2e7e1;
  }

  .mobile-menu-enabled .nav > nav > .nav-cta {
    justify-content: center;
    margin-top: 4px;
    min-height: 50px;
    font-size: 14px;
  }

  .mobile-menu-enabled.mobile-menu-open .mobile-menu-toggle > span:first-child {
    background: transparent;
  }

  .mobile-menu-enabled.mobile-menu-open .mobile-menu-toggle > span:first-child::before {
    top: 0;
    transform: rotate(45deg);
  }

  .mobile-menu-enabled.mobile-menu-open .mobile-menu-toggle > span:first-child::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .mobile-static-grid {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  .mobile-static-grid > * {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: none !important;
    scroll-snap-align: none !important;
  }

  .breadcrumb {
    min-height: 38px;
    padding-top: 9px;
    font-size: 12px;
    line-height: 1.35;
  }

  .panel,
  .quote-card,
  .outcome,
  .step,
  .procedure-card,
  .comparison-card,
  .contact-step,
  .content-intent-card,
  .lf-decision-card,
  .lf-elegance-card,
  .lf-safety-card,
  .recovery-card,
  .surgical-journey-grid article {
    border-radius: 14px;
  }
}

@media (max-width: 760px) {
  html[data-procedure="lifting-facial"] section[data-mobile-collapse] {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  html[data-procedure="lifting-facial"] section[data-mobile-collapse] .section-head h2 {
    font-size: clamp(30px, 8.6vw, 38px);
  }

  html[data-procedure="lifting-facial"] section[data-mobile-collapse] .mobile-disclosure-toggle {
    margin-top: 16px;
    border-color: rgba(80, 55, 48, .2);
    background: #fffaf7;
    box-shadow: 0 8px 20px rgba(63, 57, 52, .05);
  }

  [data-mobile-scroll].mobile-carousel {
    width: 100% !important;
    gap: 12px !important;
    margin-right: 0 !important;
    padding: 2px 4px 14px 0 !important;
  }

  [data-mobile-scroll].mobile-carousel > * {
    flex-basis: min(86vw, 350px) !important;
    max-width: min(86vw, 350px) !important;
  }
}

@media (max-width: 390px) {
  body > header .brand strong { font-size: 17px; }
  body > header .brand span { font-size: 11px; }
  body > header:not(.mobile-menu-enabled) .nav > nav .nav-cta {
    min-width: 108px;
    max-width: 108px;
    font-size: 10.5px;
  }
}


/* Retorno contextual para a página que iniciou a jornada do paciente. */
.journey-return {
  border-top: 1px solid rgba(80, 55, 48, .07);
  border-bottom: 1px solid rgba(80, 55, 48, .1);
  background: rgba(255, 252, 249, .94);
}

.breadcrumb + .journey-return {
  margin-top: 12px;
}

.journey-return-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.journey-return-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.journey-return-link small,
.journey-return-link strong {
  display: block;
}

.journey-return-link small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.journey-return-link strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.journey-return-arrow {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(80, 55, 48, .18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: transform .2s ease, border-color .2s ease;
}

.journey-return-link:hover .journey-return-arrow,
.journey-return-link:focus-visible .journey-return-arrow {
  border-color: rgba(80, 55, 48, .42);
  transform: translateX(-2px);
}

.journey-home-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(80, 55, 48, .2);
  text-underline-offset: 4px;
}

.journey-return a:focus-visible {
  outline: 2px solid var(--deep);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .breadcrumb + .journey-return {
    margin-top: 10px;
  }

  .journey-return-inner {
    min-height: 68px;
    gap: 12px;
  }

  .journey-return-link {
    min-width: 0;
    flex: 1 1 auto;
  }

  .journey-return-link strong {
    font-size: 14px;
  }

  .journey-home-link {
    max-width: 92px;
    flex: 0 0 auto;
    justify-content: flex-end;
    text-align: right;
    line-height: 1.25;
  }
}

@media (max-width: 390px) {
  .journey-return-link small {
    display: none;
  }

  .journey-return-arrow {
    width: 28px;
    height: 28px;
  }
}
