:root {
  --bg:            #F2F0EC;
  --bg-alt:        #EBE7E0;
  --surface:       #FBFAF8;
  --card:          #DAD8D4;
  --card-strong:   #CFCDC8;
  --tan:           #D8C7A6;
  --tan-strong:    #C9AE7E;
  --ink:           #171614;
  --ink-soft:      #4A4844;
  --muted:         #767369;
  --gold:          #B87801;
  --gold-soft:     #D4A24A;
  --border:        #DCD9D2;
  --white:         #FFFFFF;

  --font-display:  'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body:     'Inter', -apple-system, sans-serif;

  --radius-lg:     28px;
  --radius-md:     20px;
  --radius-sm:     14px;
  --radius-pill:   999px;

  --container:     1180px;
  --gutter:        24px;

  --ease:          cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html {
  scroll-behavior: smooth; 
  -webkit-text-size-adjust: 100%;
  width: 100%; 
  max-width: 100vw; 
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  width: 100%; 
  max-width: 100vw; 
  overflow-x: hidden;
  position: relative;
}

main, section, .container, .hero, .hero-media, .hero-grid { 
  max-width: 100%; 
}

img { 
  max-width: 100%; 
  display: block; 
}

svg { 
  max-width: 100%; 
}

button { 
  font-family: inherit; 
  cursor: pointer; 
  border: none; 
  background: none; 
  appearance: none; 
  -webkit-appearance: none; 
}

a { 
  color: inherit; 
  text-decoration: none; 
}

ul { 
  list-style: none; 
}

input, textarea, select { 
  font-family: inherit; 
  font-size: 16px; 
  max-width: 100%; 
}

:focus-visible { 
  outline: 2px solid var(--gold); 
  outline-offset: 3px; 
}

@media (prefers-reduced-motion: reduce) {
  * { 
    animation-duration: .001ms !important; 
    transition-duration: .001ms !important; 
    scroll-behavior: auto !important; 
  }
}

.container { 
  max-width: var(--container); 
  width: 100%; 
  margin: 0 auto; 
  padding: 0 var(--gutter); 
  box-sizing: border-box; 
}

.section { 
  padding: 88px 0; 
  position: relative; 
  overflow-x: hidden; 
}

.section-tight { 
  padding: 64px 0; 
}

@media (max-width: 640px) {
  :root { --gutter: 18px; }
  .section { padding: 52px 0; }
  .section-tight { padding: 40px 0; }
}

h1, h2, h3, h4 { 
  font-family: var(--font-display); 
  font-weight: 600; 
  letter-spacing: -0.01em; 
  color: var(--ink); 
}

h2 { 
  font-size: clamp(28px, 4vw, 40px); 
  line-height: 1.22; 
}

h3 { 
  font-size: 20px; 
  line-height: 1.3; 
}

p { 
  color: var(--ink-soft); 
}

.lede { 
  font-size: 17px; 
  line-height: 1.7; 
  color: var(--ink-soft); 
  max-width: 640px; 
}

.accent { 
  color: var(--gold); 
}

.reveal { 
  opacity: 0; 
  transform: translateY(18px); 
  transition: opacity .7s var(--ease), transform .7s var(--ease); 
}

.reveal.is-visible { 
  opacity: 1; 
  transform: translateY(0); 
}

.eyebrow {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-pill);
  font-size: 12px; 
  font-weight: 600; 
  letter-spacing: .12em; 
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}

.btn {
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-size: 14px; 
  font-weight: 600; 
  letter-spacing: .03em; 
  text-transform: uppercase;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  white-space: normal; 
  text-align: center; 
  max-width: 100%;
}

@media (min-width: 520px) { 
  .btn { white-space: nowrap; } 
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}

.btn-primary:hover { 
  background: var(--gold); 
  transform: translateY(-2px); 
  box-shadow: 0 10px 24px rgba(184,120,1,.28); 
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-outline:hover { 
  background: var(--ink); 
  color: var(--white); 
  transform: translateY(-2px); 
}

.btn-whatsapp { 
  background: #25D366; 
  color: #fff; 
}

.btn-whatsapp:hover { 
  background: #1EBE5A; 
  transform: translateY(-2px); 
  box-shadow: 0 10px 24px rgba(37,211,102,.32); 
}

/* CTA de destaque ao final do FAQ */
.faq-cta {
  position: relative;
  overflow: hidden;
  margin-top: 44px;
  padding: 52px 40px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, #201e1b 0%, #131210 100%);
  box-shadow: 0 26px 60px rgba(0,0,0,.30);
}

.faq-cta::before {
  content: '';
  position: absolute;
  top: -45%;
  right: -12%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,120,1,.38), transparent 68%);
  pointer-events: none;
}

.faq-cta::after {
  content: '';
  position: absolute;
  bottom: -55%;
  left: -14%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(216,199,166,.16), transparent 70%);
  pointer-events: none;
}

.faq-cta-eyebrow {
  position: relative;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 14px;
}

.faq-cta-title {
  position: relative;
  max-width: 620px;
  margin: 0 auto 30px;
  color: #F5F1E9;
  font-size: clamp(21px, 3vw, 28px);
  line-height: 1.32;
}

.faq-cta-btn {
  position: relative;
  background: var(--gold);
  color: #fff;
  box-shadow: 0 12px 30px rgba(184,120,1,.40);
}

.faq-cta-btn svg {
  transition: transform .35s var(--ease);
}

.faq-cta-btn:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(184,120,1,.52);
}

.faq-cta-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .faq-cta { padding: 40px 24px; }
}

.btn-block { 
  width: 100%; 
}

.btn[disabled] { 
  opacity: .55; 
  pointer-events: none; 
}

.check-list { 
  display: flex; 
  flex-direction: column; 
  gap: 14px; 
  margin-top: 28px; 
}

.check-item { 
  display: flex; 
  align-items: flex-start; 
  gap: 12px; 
  font-size: 15.5px; 
  color: var(--ink-soft); 
}

.check-icon { 
  flex: 0 0 auto; 
  width: 22px; 
  height: 22px; 
  margin-top: 1px; 
}

.check-icon circle, .check-icon path { 
  stroke: var(--ink); 
}

.site-header {
  position: fixed; 
  top: 0; 
  left: 0;
  width: 100%;
  z-index: 60;
  background: rgba(242, 240, 236, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 18px var(--gutter); 
  max-width: var(--container); 
  margin: 0 auto; 
}

.logo { 
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links { 
  display: none; 
  gap: 32px; 
  font-size: 14px; 
  font-weight: 500; 
}

.nav-links a { 
  margin-right: 32px; 
}

.nav-links a:last-child { 
  margin-right: 0; 
}

@media (max-width: 959px) {
  .nav-links a { 
    margin-right: 0; 
    padding: 10px 0; 
    border-bottom: 1px solid var(--border); 
  }
  .nav-links a:last-child { border-bottom: none; }
}

.nav-cta { 
  display: none; 
}

.nav-burger { 
  width: 40px; 
  height: 40px; 
  display: grid; 
  place-items: center; 
}

.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ''; 
  display: block; 
  width: 20px; 
  height: 1.5px; 
  background: var(--ink); 
  position: relative; 
  transition: .3s var(--ease);
}

.nav-burger span::before { position: absolute; top: -6px; }
.nav-burger span::after { position: absolute; top: 6px; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
}

.hero { 
  padding: 0 0 72px; 
}

@media (max-width: 640px) { 
  .hero { padding: 0 0 48px; } 
}

.hero-grid { 
  display: grid; 
  gap: 48px; 
  align-items: center; 
}

.hero-media { 
  position: relative; 
  order: 2; 
}

.hero-copy { 
  order: 1; 
}

.hero-media::before {
  content: ''; 
  position: absolute; 
  inset: 24px -18px auto auto; 
  top: 14%; 
  bottom: auto;
  width: 78%; 
  height: 88%;
  background: var(--tan); 
  border-radius: 36px;
  z-index: 0;
  left: -16px; 
  right: auto;
}

.hero-img {
  position: relative; 
  z-index: 1;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 3/4;
  min-height: 360px;
  background: linear-gradient(160deg, #e7ded0, #cbb997);
  display: flex; 
  align-items: center; 
  justify-content: center;
}

@media (min-width: 900px) { 
  .hero-img { min-height: 480px; } 
}

.hero-img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.hero-img .ph-label {
  position: absolute; 
  bottom: 14px; 
  left: 14px; 
  right: 14px;
  font-size: 11px; 
  letter-spacing: .06em; 
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85); 
  background: rgba(0, 0, 0, .28);
  padding: 6px 10px; 
  border-radius: 8px; 
  backdrop-filter: blur(4px);
}

.hero-copy h1 { 
  font-size: clamp(28px, 4.4vw, 46px); 
  line-height: 1.18; 
}

.hero-copy .lede { 
  margin-top: 20px; 
}

.hero-copy .lede + .lede { 
  margin-top: 14px; 
}

.hero-actions { 
  margin-top: 32px; 
  display: flex; 
  flex-wrap: wrap; 
  gap: 14px; 
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 0.85fr 1fr; }
  .hero-media { order: 2; }
  .hero-copy { order: 1; }
}

/* ===== Primeira dobra: faixa de imagem + selo + destaques ===== */
.hero-banner {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 1941 / 810;
  overflow: visible;
  background: transparent;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 22px;
}

@media (max-width: 640px) {
  .hero-banner {
    max-width: 100%;
    border-radius: 0;
  }
  .hero-banner-img { border-radius: 16px; }
}

/* Telas maiores: banner largo (2.4:1) preenchendo a largura do conteudo,
   sem cortar a imagem e sem ocupar a pagina inteira. */
@media (min-width: 641px) {
  .hero-banner {
    width: 100%;
    max-width: var(--container);   /* alinha com o restante do conteudo (1180px) */
    height: auto;
    aspect-ratio: 1941 / 810;      /* proporcao real da imagem larga (~2.4:1) */
    margin-inline: auto;
  }
}

.hero-logo {
  display: none; /* banner image already contains the Life logo */
  position: absolute;
  top: clamp(14px, 3vw, 26px);
  left: clamp(16px, 4vw, 40px);
  width: clamp(84px, 11vw, 128px);
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(23,22,20,.18));
}

.hero-badge {
  display: none; /* banner image already shows the "Avaliação Personalizada / Life Contour" tagline */
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 32px);
  padding: 12px 22px;
  background: var(--surface);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(23,22,20,.14);
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  white-space: nowrap;
}

.hero-badge-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-badge-sep { color: var(--gold); }

.hero-badge-seal {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

@media (max-width: 560px) {
  .hero-badge {
    white-space: normal;
    padding: 10px 20px;
    font-size: 13.5px;
  }
  .hero-badge-text {
    flex-direction: column;
    gap: 1px;
    line-height: 1.25;
  }
  .hero-badge-sep { display: none; }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  margin-top: clamp(52px, 7vw, 78px);
  padding: 18px 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(23,22,20,.06);
}

.hero-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 4px 8px;
  text-align: center;
}

.hero-stat + .hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  height: 76%;
  width: 1px;
  background: var(--border);
}

.hero-stat-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.hero-stat-top svg {
  width: clamp(16px, 2.2vw, 20px);
  height: clamp(16px, 2.2vw, 20px);
  flex: 0 0 auto;
}

.hero-stat-top strong {
  font-size: clamp(15px, 2.1vw, 18px);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.hero-stat span {
  font-size: clamp(10.5px, 1.4vw, 12.5px);
  color: var(--muted);
  line-height: 1.25;
}

.hero-stat-rating { gap: 2px; }

.hero-stars {
  color: var(--gold);
  font-size: clamp(9px, 1.7vw, 12px);
  letter-spacing: 1px;
  line-height: 1;
}

@media (max-width: 560px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 4px;
    padding: 20px 8px;
  }
  /* remove the vertical rule between adjacent cells; add row rhythm instead */
  .hero-stat + .hero-stat::before { display: none; }
  .hero-stat-top strong { font-size: 17px; }
  .hero-stat span { font-size: 12px; }
}

.hero-copy {
  margin-top: clamp(28px, 4vw, 44px);
}

@media (min-width: 900px) {
  .hero-copy { max-width: 760px; }
}

.trust { 
  background: var(--bg-alt); 
}

.trust-head { 
  text-align: center; 
  max-width: 640px; 
  margin: 0 auto 20px; 
}

.rating-row { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 10px; 
  margin-bottom: 14px; 
  flex-wrap: wrap; 
}

.stars { 
  letter-spacing: 2px; 
  color: var(--gold); 
  font-size: 18px; 
}

.rating-note { 
  font-size: 13px; 
  color: var(--muted); 
}

.review-carousel { 
  margin-top: 44px; 
  position: relative; 
}

.review-track { 
  display: flex; 
  align-items: flex-start; 
  gap: 20px; 
  overflow-x: auto; 
  scroll-snap-type: x mandatory; 
  padding-bottom: 6px; 
  scrollbar-width: none; 
}

.review-track::-webkit-scrollbar { 
  display: none; 
}

.review-card {
  scroll-snap-align: start; 
  flex: 0 0 88%;
  background: var(--surface); 
  border: 1px solid var(--border);
  border-radius: var(--radius-md); 
  padding: 26px;
}

@media (min-width: 640px) { .review-card { flex: 0 0 46%; } }
@media (min-width: 1024px) { .review-card { flex: 0 0 31.5%; } }

.review-top { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 12px; 
}

.review-avatar {
  width: 44px; 
  height: 44px; 
  border-radius: 50%;
  background: linear-gradient(145deg, var(--tan), var(--tan-strong));
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-family: var(--font-display); 
  font-weight: 600; 
  color: var(--ink);
}

.review-name { 
  font-size: 14.5px; 
  font-weight: 600; 
}

.review-date { 
  font-size: 12px; 
  color: var(--muted); 
}

.review-stars { 
  color: var(--gold); 
  font-size: 13px; 
  margin-bottom: 8px; 
  letter-spacing: 1px; 
}

.review-text { 
  font-size: 14.5px; 
  color: var(--ink-soft); 
  line-height: 1.6; 
}

.review-badge { 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  margin-top: 14px; 
  font-size: 11.5px; 
  color: var(--muted); 
}

.review-nav { 
  display: flex; 
  justify-content: center; 
  gap: 12px; 
  margin-top: 26px; 
}

.rn-btn { 
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  border: 1px solid var(--border); 
  background: var(--surface); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: .3s var(--ease); 
}

.rn-btn:hover { 
  background: var(--ink); 
  border-color: var(--ink); 
}

.rn-btn:hover svg path { 
  stroke: #fff; 
}

.review-all-link { 
  display: block; 
  text-align: center; 
  margin-top: 22px; 
  font-size: 13.5px; 
  font-weight: 600; 
  text-decoration: underline; 
  text-underline-offset: 3px; 
  color: var(--ink); 
}

.location-wrap {
  position: relative; 
  border-radius: var(--radius-md); 
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
  margin-top: 28px;
  max-width: 420px;
}

.location-map { 
  width: 100%; 
  height: 180px; 
  background: var(--card); 
}

.location-map iframe { 
  display: block; 
  width: 100%; 
  height: 100%; 
  border: 0; 
}

.location-card {
  position: absolute; 
  top: 10px; 
  left: 10px; 
  right: 10px; 
  z-index: 5;
  background: var(--surface); 
  border-radius: var(--radius-sm);
  padding: 9px 10px; 
  display: flex; 
  align-items: center; 
  gap: 8px;
  box-shadow: 0 8px 18px rgba(0,0,0,.14);
}

.location-info { 
  min-width: 0; 
}

.location-info h4 { 
  font-size: 12.5px; 
  font-weight: 600; 
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
}

.location-info p { 
  font-size: 10.5px; 
  color: var(--muted); 
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
}

.location-actions { 
  display: flex; 
  gap: 6px; 
  margin-left: auto; 
  flex: 0 0 auto; 
}

.location-btn {
  width: 28px; 
  height: 28px; 
  border-radius: 50%; 
  display: grid; 
  place-items: center;
  background: var(--bg-alt); 
  flex: 0 0 auto; 
  transition: .3s var(--ease);
}

.location-btn svg { 
  width: 13px; 
  height: 13px; 
}

.location-btn-primary { 
  background: var(--gold); 
}

.location-btn-primary svg path, .location-btn-primary svg polygon { 
  stroke: #fff; 
  fill: #fff; 
}

.location-btn:hover { 
  background: var(--ink); 
}

.location-btn:hover svg path { 
  stroke: #fff; 
}

.location-btn:not(.location-btn-primary):hover svg path { 
  stroke: #fff; 
}

.toggle-group { 
  display: inline-flex; 
  padding: 6px; 
  background: var(--surface); 
  border: 1px solid var(--border); 
  border-radius: var(--radius-pill); 
  margin: 8px 0 36px; 
  gap: 4px; 
  flex-wrap: wrap; 
}

.toggle-btn { 
  padding: 12px 20px; 
  border-radius: var(--radius-pill); 
  font-size: 13px; 
  font-weight: 600; 
  color: var(--muted); 
  transition: .3s var(--ease); 
  white-space: nowrap; 
}

.toggle-btn.is-active { 
  background: var(--ink); 
  color: #fff; 
}

@media (max-width: 560px) {
  .toggle-group { display: flex; flex-direction: column; width: 100%; border-radius: var(--radius-md); }
  .toggle-btn { width: 100%; white-space: normal; text-align: center; }
}

.tile-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 16px; 
}

@media (min-width: 640px) { .tile-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .tile-grid { grid-template-columns: repeat(4, 1fr); } }

.tile {
  background: var(--card); 
  border-radius: var(--radius-md);
  padding: 12px 12px 16px; 
  text-align: center;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 12px;
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
  width: 100%; 
  cursor: pointer;
}

.tile:hover, .tile:focus-visible { 
  transform: translateY(-4px); 
  background: var(--card-strong); 
  box-shadow: 0 14px 30px rgba(23,22,20,.10); 
}

.tile-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background: var(--tan);
  overflow: hidden;
}

.tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}

.tile:hover .tile-photo img,
.tile:focus-visible .tile-photo img {
  transform: scale(1.05);
}

.tile-label { 
  font-size: 14.5px; 
  font-weight: 600; 
  color: var(--ink); 
  line-height: 1.3;
}

.tab-panel { 
  display: none; 
}

.tab-panel.is-active { 
  display: block; 
}

.approach-note { 
  margin-top: 30px; 
  font-size: 13.5px; 
  font-style: italic; 
  color: var(--muted); 
  max-width: 560px; 
}

.method { 
  background: var(--bg-alt); 
}

.method-head { 
  max-width: 640px; 
}

.method-steps { 
  margin-top: 52px; 
  display: grid; 
  gap: 0; 
  position: relative; 
}

.step { 
  display: grid; 
  grid-template-columns: auto 1fr; 
  gap: 22px; 
  padding-bottom: 44px; 
  position: relative; 
}

.step:last-child { 
  padding-bottom: 0; 
}

.step-marker { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
}

.step-num {
  width: 56px; 
  height: 56px; 
  border-radius: 50%; 
  flex: 0 0 auto;
  background: linear-gradient(150deg, var(--tan), var(--tan-strong));
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-family: var(--font-display); 
  font-weight: 700; 
  font-size: 18px; 
  color: var(--ink);
}

.step-line { 
  width: 1.5px; 
  flex: 1; 
  background: var(--border); 
  margin-top: 6px; 
}

.step-body { 
  padding-top: 8px; 
}

.step-body h3 { 
  margin-bottom: 6px; 
}

.step-body p { 
  font-size: 14.5px; 
  max-width: 480px; 
}

@media (min-width: 900px) {
  .method-steps { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .step { grid-template-columns: 1fr; padding-bottom: 0; }
  .step-marker { flex-direction: row; }
  .step-line { display: none; }
}

.gallery-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 16px; 
  margin-top: 44px; 
}

@media (min-width: 520px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .g-item:first-child { grid-column: 1 / -1; }
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid .g-item:first-child { grid-column: 1 / span 2; grid-row: 1 / span 2; }
}

.g-item {
  border-radius: var(--radius-md); 
  overflow: hidden; 
  position: relative;
  aspect-ratio: 4/3; 
  min-height: 180px; 
  background: linear-gradient(150deg, #e2dccb, var(--tan-strong));
  display: flex; 
  align-items: flex-end;
  cursor: pointer; 
  border: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.g-item:hover, .g-item:focus-visible { 
  transform: translateY(-3px) scale(1.015); 
  box-shadow: 0 16px 34px rgba(23,22,20,.14); 
}

.g-item img { 
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform .5s var(--ease);
}

.g-item:hover img {
  transform: scale(1.05);
}

@media (min-width: 520px) { 
  .gallery-grid .g-item:first-child { aspect-ratio: auto; } 
}

.g-caption {
  width: 100%; 
  padding: 16px; 
  font-size: 13px; 
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  position: relative; 
  z-index: 1;
}

.modal.lightbox-box { 
  width: auto; 
  max-width: min(92vw, 900px); 
  padding: 0; 
  overflow: hidden; 
  background: var(--surface); 
}

.lightbox-media {
  position: relative; 
  display: block;
  background: transparent;
  line-height: 0;
}

.lightbox-media img { 
  display: block;
  width: auto; 
  height: auto; 
  max-width: min(92vw, 900px);
  max-height: 82vh;
}

.lightbox-close {
  position: absolute; 
  top: 14px; 
  right: 14px; 
  z-index: 2;
  width: 36px; 
  height: 36px; 
  border-radius: 50%; 
  background: rgba(23,22,20,.55); 
  backdrop-filter: blur(4px);
  color: #fff; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 18px;
}

.lightbox-close:hover { 
  background: rgba(23,22,20,.8); 
}

.lightbox-caption { 
  padding: 16px 22px 20px; 
  font-size: 15px; 
  color: var(--ink); 
  font-weight: 500; 
  line-height: 1.4;
}

#galleryLightbox { align-items: center; }
.modal.lightbox-box { border-radius: 20px; }

.doctor-grid { 
  display: grid; 
  gap: 40px; 
  align-items: center; 
}

.doctor-photo {
  aspect-ratio: 3/4; 
  min-height: 340px; 
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, #e7ded0, #cbb997);
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-quote {
  margin-top: 26px; 
  padding: 20px 22px; 
  border-left: 3px solid var(--gold);
  font-style: italic; 
  font-size: 15px; 
  color: var(--ink-soft); 
  background: var(--surface); 
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.placeholder-tag { 
  font-weight: 700; 
  color: var(--ink); 
}

@media (min-width: 900px) { 
  .doctor-grid { grid-template-columns: 0.8fr 1fr; } 
}

.faq-list { 
  margin-top: 40px; 
  max-width: 780px; 
}

.faq-item { 
  border-bottom: 1px solid var(--border); 
}

.faq-q {
  width: 100%; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 16px;
  padding: 22px 4px; 
  text-align: left; 
  font-family: var(--font-display); 
  font-weight: 600; 
  font-size: 16px;
}

.faq-q .plus { 
  flex: 0 0 auto; 
  width: 22px; 
  height: 22px; 
  position: relative; 
}

.faq-q .plus::before, .faq-q .plus::after { 
  content: ''; 
  position: absolute; 
  background: var(--ink); 
  transition: .3s var(--ease); 
}

.faq-q .plus::before { width: 14px; height: 1.5px; top: 10px; left: 4px; }
.faq-q .plus::after { width: 1.5px; height: 14px; left: 10px; top: 4px; }
.faq-item.is-open .plus::after { transform: scaleY(0); }

.faq-a { 
  max-height: 0; 
  overflow: hidden; 
  transition: max-height .4s var(--ease); 
}

.faq-a-inner { 
  padding: 0 4px 22px; 
  font-size: 14.5px; 
  max-width: 640px; 
}

.cta-final { 
  background: var(--ink); 
  color: #fff; 
  text-align: center; 
}

.cta-final h2 { 
  color: #fff; 
  max-width: 680px; 
  margin: 0 auto; 
}

.cta-final .lede { 
  color: rgba(255,255,255,.72); 
  margin: 20px auto 0; 
  text-align: center; 
}

.cta-final .hero-actions { 
  justify-content: center; 
  margin-top: 34px; 
}

.site-footer { 
  padding: 56px 0 34px; 
  font-size: 13.5px; 
  color: var(--muted); 
}

.footer-grid { 
  display: grid; 
  gap: 28px; 
}

.footer-logo { 
  font-family: var(--font-display); 
  font-weight: 700; 
  color: var(--ink); 
  font-size: 18px; 
  margin-bottom: 10px; 
}

.footer-cols { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 30px 20px; 
  margin-top: 28px; 
}

@media (min-width: 700px) { 
  .footer-cols { grid-template-columns: repeat(4, 1fr); gap: 32px; } 
}

.footer-col h4 { 
  font-size: 12.5px; 
  text-transform: uppercase; 
  letter-spacing: .08em; 
  color: var(--ink); 
  margin-bottom: 12px; 
}

.footer-col a { 
  display: block; 
  padding: 4px 0; 
}

.footer-social {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  margin-top: 2px; 
  font-size: 13.5px; 
  font-weight: 600; 
  color: var(--ink);
  transition: .3s var(--ease);
}

.footer-social:hover { 
  color: var(--gold); 
}

.footer-social-icon {
  width: 30px; 
  height: 30px; 
  border-radius: 50%; 
  flex: 0 0 auto;
  display: grid; 
  place-items: center;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.footer-social-icon svg { 
  width: 16px; 
  height: 16px; 
}

.footer-bottom { 
  margin-top: 36px; 
  padding-top: 20px; 
  border-top: 1px solid var(--border); 
  display: flex; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  gap: 10px; 
}

.wa-float {
  position: fixed; 
  right: 20px; 
  bottom: 20px; 
  z-index: 50;
  width: 58px; 
  height: 58px; 
  border-radius: 50%;
  background: #25D366; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  transition: transform .3s var(--ease);
}

.wa-float:hover { 
  transform: scale(1.08); 
}

.modal-overlay {
  position: fixed; 
  inset: 0; 
  background: rgba(15,14,12,.55); 
  backdrop-filter: blur(3px);
  display: flex; 
  align-items: flex-end; 
  justify-content: center; 
  z-index: 100;
  opacity: 0; 
  visibility: hidden; 
  transition: opacity .3s var(--ease);
}

.modal-overlay.is-open { 
  opacity: 1; 
  visibility: visible; 
}

.modal {
  background: var(--bg); 
  width: 100%; 
  max-width: 560px; 
  max-height: 92vh; 
  overflow-y: auto;
  border-radius: 24px 24px 0 0; 
  padding: 32px 24px 28px;
  transform: translateY(24px); 
  transition: transform .35s var(--ease);
}

.modal-overlay.is-open .modal { 
  transform: translateY(0); 
}

@media (min-width: 640px) {
  .modal-overlay { align-items: center; }
  .modal { border-radius: 24px; padding: 40px; }
}

.modal-head { 
  display: flex; 
  align-items: flex-start; 
  justify-content: space-between; 
  gap: 16px; 
  margin-bottom: 6px; 
}

.modal-close { 
  width: 32px; 
  height: 32px; 
  flex: 0 0 auto; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 18px; 
  color: var(--muted); 
}

.modal-close:hover { 
  background: var(--card); 
}

.modal h3 { 
  font-size: 22px; 
  margin-bottom: 4px; 
}

.modal-sub { 
  font-size: 13.5px; 
  color: var(--muted); 
  margin-bottom: 24px; 
}

.detail-modal { 
  max-width: 480px; 
}

.detail-tag {
  display: inline-flex; 
  align-items: center; 
  gap: 6px;
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: .08em; 
  text-transform: uppercase;
  color: var(--gold); 
  margin-bottom: 10px;
}

.detail-stage {
  width: 100%; 
  aspect-ratio: 16/10; 
  border-radius: 18px; 
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-alt), var(--tan) 140%);
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin-bottom: 20px;
}

.detail-stage svg { 
  width: 100%; 
  height: 100%; 
}

.detail-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-modal h3 { 
  font-size: 21px; 
  margin-bottom: 10px; 
}

.detail-summary { 
  font-size: 14.5px; 
  line-height: 1.65; 
  color: var(--ink-soft); 
  margin-bottom: 24px; 
}

.detail-cta-row { 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
}

.form-group { 
  margin-bottom: 16px; 
}

.form-group label { 
  display: block; 
  font-size: 12.5px; 
  font-weight: 600; 
  letter-spacing: .03em; 
  text-transform: uppercase; 
  color: var(--ink-soft); 
  margin-bottom: 6px; 
}

.form-control {
  width: 100%; 
  padding: 13px 15px; 
  border: 1.5px solid var(--border); 
  border-radius: 12px;
  background: var(--surface); 
  color: var(--ink); 
  font-size: 15px; 
  transition: border-color .25s var(--ease);
}

.form-control:focus { 
  border-color: var(--gold); 
}

textarea.form-control { 
  resize: vertical; 
  min-height: 80px; 
}

.field-hint { 
  font-size: 12px; 
  color: var(--muted); 
  margin-top: 5px; 
}

.form-section-label { 
  font-size: 11.5px; 
  text-transform: uppercase; 
  letter-spacing: .08em; 
  color: var(--gold); 
  margin: 22px 0 12px; 
  font-weight: 700; 
}

.form-section-label:first-child { 
  margin-top: 0; 
}

.form-error { 
  font-size: 12px; 
  color: #B3261E; 
  margin-top: 5px; 
  display: none; 
}

.form-group.has-error .form-control { 
  border-color: #B3261E; 
}

.form-group.has-error .form-error { 
  display: block; 
}

#field-jaFezWrap { 
  display: none; 
}

.form-status { 
  margin-top: 14px; 
  font-size: 13.5px; 
  text-align: center; 
  display: none; 
}

.form-status.is-success { 
  color: #2E7D32; 
  font-weight: 600; 
}

.form-status.is-error { 
  color: #B3261E; 
  font-weight: 600; 
}

.consent-group { 
  margin-top: 6px; 
  margin-bottom: 18px; 
}

.consent-label { 
  display: flex; 
  align-items: flex-start; 
  gap: 10px; 
  cursor: pointer; 
}

.consent-label input[type="checkbox"] {
  flex: 0 0 auto; 
  width: 19px; 
  height: 19px; 
  margin-top: 1px;
  accent-color: var(--gold); 
  cursor: pointer;
}

.consent-label span { 
  font-size: 13px; 
  line-height: 1.55; 
  color: var(--ink-soft); 
}

.privacy-link {
  display: inline; 
  padding: 0; 
  background: none; 
  border: none; 
  cursor: pointer;
  color: var(--ink); 
  font-weight: 600; 
  text-decoration: underline; 
  text-underline-offset: 2px;
  font-size: inherit; 
  font-family: inherit;
}

.privacy-link:hover { 
  color: var(--gold); 
}

.privacy-policy {
  display: none; 
  margin-top: 12px; 
  padding: 14px 16px; 
  background: var(--surface);
  border: 1px solid var(--border); 
  border-radius: var(--radius-sm);
  font-size: 12.5px; 
  line-height: 1.6; 
  color: var(--ink-soft);
}

.privacy-policy.is-open { 
  display: block; 
}

.privacy-policy strong { 
  display: block; 
  margin-bottom: 8px; 
  font-size: 13px; 
  color: var(--ink); 
}

.privacy-policy p { 
  margin-bottom: 8px; 
  color: var(--ink-soft); 
}

.privacy-policy p:last-child { 
  margin-bottom: 0; 
}

.consent-group.has-error .consent-label { 
  color: #B3261E; 
}

.consent-group .form-error { 
  margin-top: 8px; 
}