:root {
  --brown-950: #1e0f0a;
  --brown-900: #2c160f;
  --brown-800: #3d1c14;
  --brown-700: #54281d;
  --gold: #b79a63;
  --gold-light: #d6c5a7;
  --ivory: #f7f3ed;
  --sand: #e8ded1;
  --greige: #cfc1b1;
  --charcoal: #221f1d;
  --muted: #6f6964;
  --white: #ffffff;
  --whatsapp: #25d366;
  --shadow: 0 24px 70px rgba(34, 20, 13, .12);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, summary { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; transform: translateY(-150%); background: #fff; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 237, .94);
  border-bottom: 1px solid rgba(84, 40, 29, .1);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 230px; height: auto; }
.desktop-nav { display: flex; gap: 26px; align-items: center; }
.desktop-nav a { text-decoration: none; font-size: .92rem; font-weight: 600; color: #514a46; }
.desktop-nav a:hover { color: var(--brown-700); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 10px 18px; font-size: .9rem; }
.button-header { background: var(--brown-800); color: #fff; }
.button-primary { background: var(--gold); color: var(--brown-950); box-shadow: 0 12px 35px rgba(183,154,99,.26); }
.button-primary:hover { background: #c6aa75; }
.button-outline { border-color: var(--brown-700); color: var(--brown-800); }
.button-outline:hover { background: var(--brown-800); color: #fff; }
.button-light { background: #fff; color: var(--brown-900); }
.text-link { color: #fff; text-underline-offset: 5px; font-weight: 600; }

.hero { position: relative; min-height: 760px; display: flex; align-items: center; overflow: hidden; background: var(--brown-900); }
.hero-picture, .hero-picture img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-picture img { object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,10,7,.82) 0%, rgba(34,15,10,.58) 44%, rgba(34,15,10,.08) 72%, rgba(34,15,10,.06) 100%); }
.hero-content { position: relative; z-index: 2; color: #fff; padding-block: 120px; }
.hero-content > * { max-width: 670px; }
.eyebrow { display: inline-block; margin-bottom: 20px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 700; }
.eyebrow-dark { color: #876d43; }
h1, h2, h3 { margin-top: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 500; letter-spacing: -.02em; line-height: 1.08; }
h1 { font-size: clamp(3.1rem, 6.1vw, 6.15rem); margin-bottom: 26px; }
h2 { font-size: clamp(2.45rem, 4.2vw, 4.35rem); margin-bottom: 24px; }
h3 { line-height: 1.25; }
.hero-content > p { font-size: clamp(1.08rem, 1.7vw, 1.25rem); color: rgba(255,255,255,.82); max-width: 610px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 28px; list-style: none; padding: 0; margin: 42px 0 0; color: rgba(255,255,255,.76); font-size: .92rem; }
.hero-proof li::before { content: "·"; color: var(--gold); margin-right: 9px; }

.trust-strip { background: #fff; border-bottom: 1px solid rgba(84,40,29,.08); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 28px 24px; border-right: 1px solid rgba(84,40,29,.08); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--brown-800); font-family: "Playfair Display", Georgia, serif; font-size: 1.13rem; }
.trust-grid span { color: var(--muted); font-size: .84rem; margin-top: 4px; }

.section { padding-block: 112px; }
.section-intro { background: var(--ivory); }
.two-column { display: grid; grid-template-columns: 1.02fr .98fr; gap: 90px; align-items: center; }
.section-copy p { font-size: 1.05rem; color: #5e5752; margin: 0 0 20px; }
.section-copy .button { margin-top: 18px; }
.feature-panel { display: grid; gap: 18px; }
.feature-card { position: relative; padding: 30px 30px 30px 92px; background: #fff; border: 1px solid rgba(84,40,29,.08); border-radius: 20px; box-shadow: 0 12px 40px rgba(34,20,13,.06); }
.feature-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.feature-card p { margin: 0; color: var(--muted); }
.feature-number { position: absolute; left: 28px; top: 30px; font-family: "Playfair Display", Georgia, serif; font-size: 1.35rem; color: var(--gold); }

.section-benefits { background: var(--sand); }
.section-heading { max-width: 850px; margin-bottom: 54px; }
.centered { text-align: center; margin-inline: auto; }
.section-heading p { color: #655d57; font-size: 1.05rem; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit-grid article { background: rgba(255,255,255,.64); border: 1px solid rgba(84,40,29,.08); border-radius: 22px; padding: 32px 26px; }
.benefit-grid article > span { font-size: 1.5rem; color: var(--gold); }
.benefit-grid h3 { margin: 16px 0 10px; font-size: 1.08rem; }
.benefit-grid p { margin: 0; color: var(--muted); font-size: .94rem; }

.section-results { background: var(--brown-950); color: #fff; }
.results-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; margin-bottom: 46px; }
.results-heading h2 { margin-bottom: 0; }
.results-heading > p { color: rgba(255,255,255,.65); margin: 0; }
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.result-card { position: relative; padding: 0; background: #000; border: 0; border-radius: 22px; overflow: hidden; cursor: zoom-in; min-height: 360px; }
.result-card img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; transition: transform .5s ease, opacity .3s ease; }
.result-card:hover img { transform: scale(1.035); opacity: .86; }
.result-card span { position: absolute; left: 18px; bottom: 18px; background: rgba(255,255,255,.9); color: var(--brown-900); border-radius: 999px; padding: 8px 14px; font-weight: 700; font-size: .82rem; }
.clinical-note { max-width: 900px; margin: 30px auto 0; text-align: center; color: rgba(255,255,255,.62); font-size: .86rem; }

.section-detail { background: #fff; }
.detail-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; align-items: center; }
.detail-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.detail-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 30px; color: #4e4843; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #8e7349; font-weight: 800; }

.section-professional { background: var(--brown-900); color: #fff; overflow: hidden; }
.professional-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 760px; }
.professional-photo { margin: -112px 0; }
.professional-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.professional-copy { padding: 86px 0 86px 86px; align-self: center; }
.professional-copy p { color: rgba(255,255,255,.72); }
.credential { color: var(--gold-light) !important; font-weight: 700; letter-spacing: .04em; }
.professional-copy blockquote { margin: 34px 0 0; padding-left: 24px; border-left: 2px solid var(--gold); font-family: "Playfair Display", Georgia, serif; font-size: 1.45rem; color: #fff; }

.section-clinic { background: var(--ivory); }
.clinic-gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 285px 285px; gap: 18px; }
.clinic-gallery figure { margin: 0; overflow: hidden; border-radius: 22px; }
.clinic-gallery img { width: 100%; height: 100%; object-fit: cover; }
.clinic-large { grid-row: 1 / 3; }
.clinic-gallery figure:nth-child(2) { grid-column: 2 / 4; }

.section-faq { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro p { color: var(--muted); }
.faq-list { border-top: 1px solid rgba(84,40,29,.12); }
.faq-list details { border-bottom: 1px solid rgba(84,40,29,.12); padding: 4px 0; }
.faq-list summary { cursor: pointer; list-style: none; padding: 24px 42px 24px 0; font-weight: 700; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 20px; font-size: 1.55rem; color: var(--gold); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0 40px 24px 0; color: var(--muted); }

.section-location { background: var(--sand); }
.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; border-radius: 28px; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.location-card { padding: 58px; }
.location-card address { font-style: normal; color: #57504b; margin: 26px 0; }
.location-card address strong { color: var(--brown-800); font-size: 1.1rem; }
.location-list { list-style: none; padding: 0; margin: 0 0 30px; color: var(--muted); }
.location-list li { margin-bottom: 8px; }
.location-list li::before { content: "•"; color: var(--gold); margin-right: 9px; }
.location-actions { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.phone-link { font-weight: 700; color: var(--brown-800); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 560px; border: 0; }

.final-cta { position: relative; min-height: 650px; display: flex; align-items: center; overflow: hidden; background: var(--brown-900); }
.final-cta-image, .final-cta-image img { position: absolute; inset: 0; width: 100%; height: 100%; }
.final-cta-image img { object-fit: cover; object-position: 70% 28%; }
.final-cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,15,10,.94) 0%, rgba(30,15,10,.78) 48%, rgba(30,15,10,.18) 78%); }
.final-cta-content { position: relative; z-index: 2; color: #fff; padding-block: 90px; }
.final-cta-content > * { max-width: 720px; }
.final-cta-content p { color: rgba(255,255,255,.72); font-size: 1.08rem; margin-bottom: 30px; }

.site-footer { background: #160b07; color: rgba(255,255,255,.72); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr 1.1fr .8fr; gap: 44px; }
.footer-grid strong { display: block; color: #fff; margin-bottom: 14px; }
.footer-grid a, .footer-grid p { display: block; margin: 0 0 8px; color: rgba(255,255,255,.68); text-decoration: none; font-size: .92rem; }
.footer-grid a:hover { color: #fff; }
.footer-brand img { width: 270px; height: auto; filter: brightness(0) invert(1); opacity: .9; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; margin-top: 50px; font-size: .8rem; }

.floating-whatsapp { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: flex; align-items: center; gap: 10px; padding: 13px 18px; border-radius: 999px; background: var(--whatsapp); color: #0c2d18; font-weight: 800; text-decoration: none; box-shadow: 0 14px 40px rgba(0,0,0,.2); }
.floating-whatsapp svg { width: 24px; height: 24px; fill: currentColor; }
.mobile-cta { display: none; }

.lightbox { width: min(92vw, 900px); max-height: 92vh; border: 0; padding: 0; border-radius: 20px; overflow: visible; background: transparent; }
.lightbox::backdrop { background: rgba(0,0,0,.88); }
.lightbox img { max-height: 88vh; margin: auto; border-radius: 16px; }
.lightbox-close { position: fixed; top: 18px; right: 22px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: #fff; color: #111; font-size: 2rem; line-height: 1; cursor: pointer; }

@media (max-width: 1060px) {
  .desktop-nav { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(84,40,29,.08); }
  .two-column, .detail-grid, .faq-grid { gap: 56px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .professional-copy { padding-left: 56px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { padding-bottom: 66px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { position: absolute; width: 100%; background: transparent; border-bottom: 0; backdrop-filter: none; }
  .header-inner { min-height: 72px; }
  .brand img { width: 198px; filter: brightness(0) invert(1); }
  .button-header { display: none; }
  .hero { min-height: 800px; align-items: end; }
  .hero-picture img { object-position: center top; }
  .hero-overlay { background: linear-gradient(180deg, rgba(30,15,10,.08) 18%, rgba(30,15,10,.36) 48%, rgba(30,15,10,.96) 78%); }
  .hero-content { padding: 360px 0 60px; }
  h1 { font-size: clamp(2.7rem, 12.5vw, 4.2rem); }
  h2 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; gap: 7px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div { padding: 20px 14px; }
  .section { padding-block: 78px; }
  .two-column, .detail-grid, .professional-grid, .faq-grid, .location-grid, .results-heading { grid-template-columns: 1fr; }
  .feature-card { padding: 26px 22px 26px 72px; }
  .feature-number { left: 22px; top: 26px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr; }
  .result-card, .result-card img { min-height: 0; }
  .professional-grid { min-height: 0; }
  .professional-photo { margin: -78px -14px 0; height: 560px; }
  .professional-copy { padding: 58px 0 0; }
  .clinic-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 290px 230px 230px; }
  .clinic-large { grid-column: 1 / 3; grid-row: 1; }
  .clinic-gallery figure:nth-child(2) { grid-column: auto; }
  .clinic-gallery figure:nth-child(4) { grid-column: 1 / 3; }
  .faq-intro { position: static; }
  .location-card { padding: 34px 26px; }
  .map-wrap iframe { min-height: 420px; }
  .final-cta { min-height: 720px; align-items: end; }
  .final-cta-image img { object-position: center top; }
  .final-cta-overlay { background: linear-gradient(180deg, rgba(30,15,10,.12) 20%, rgba(30,15,10,.94) 70%); }
  .final-cta-content { padding: 360px 0 70px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { display: none; }
  .mobile-cta { display: block; position: fixed; z-index: 120; left: 0; right: 0; bottom: 0; padding: 9px 12px; background: rgba(247,243,237,.98); border-top: 1px solid rgba(84,40,29,.12); }
  .mobile-cta a { display: flex; min-height: 48px; align-items: center; justify-content: center; border-radius: 999px; background: var(--whatsapp); color: #0c2d18; text-decoration: none; font-weight: 800; }
}

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

/* Ajustes de conversão e compactação — versão 2 */
.section { padding-block: 86px; }
.section-heading { margin-bottom: 42px; }
.results-heading { margin-bottom: 36px; }
.trust-grid > div { padding: 22px 24px; }
.review-strip {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 22px;
  align-items: center;
  padding-block: 16px 20px;
  border-top: 1px solid rgba(84,40,29,.08);
}
.review-strip p { margin: 0; color: #5d554f; font-size: .84rem; line-height: 1.45; }
.review-strip p span { color: #b17824; letter-spacing: .08em; margin-right: 6px; }
.review-strip a { color: var(--brown-800); font-weight: 700; font-size: .86rem; white-space: nowrap; text-underline-offset: 4px; }
.step-label {
  display: block;
  color: #876d43;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 700;
  margin: 0 0 2px 2px;
}
.result-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.result-card { min-height: 260px; }
.result-card img { min-height: 260px; aspect-ratio: 4 / 3; }
.location-proof {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  margin: 0 0 24px;
  border-radius: 16px;
  background: var(--ivory);
  border: 1px solid rgba(84,40,29,.1);
  color: var(--brown-800);
  text-decoration: none;
}
.location-proof strong { font-size: 1rem; }
.location-proof strong span { color: #b17824; letter-spacing: .06em; }
.location-proof > span { color: var(--muted); font-size: .82rem; }

@media (max-width: 1060px) {
  .result-grid { grid-template-columns: repeat(2, 1fr); }
  .review-strip { grid-template-columns: 1fr 1fr; }
  .review-strip a { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .section { padding-block: 64px; }
  .section-heading { margin-bottom: 34px; }
  .review-strip { grid-template-columns: 1fr; gap: 12px; padding-block: 14px 18px; }
  .review-strip a { grid-column: auto; }
  .result-grid { grid-template-columns: 1fr; }
  .result-card, .result-card img { min-height: 0; }
}

/* Ajustes pontuais — versão 3 (somente itens solicitados) */
.hero #hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(3.1rem, 6.1vw, 6.15rem);
  letter-spacing: -.02em;
  line-height: 1.08;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}
.google-g-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
}
.google-rating-copy {
  min-width: 0;
}
.google-rating .google-rating-copy strong {
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
}

.result-card-full-image img {
  object-fit: contain;
  object-position: center;
  background: #e8ded1;
}

@media (max-width: 760px) {
  .hero #hero-title {
    font-size: clamp(2.7rem, 12.5vw, 4.2rem);
  }
  .google-rating {
    align-items: flex-start;
  }
}
