:root {
  --primary: #04342c;
  --primary-2: #0b4c41;
  --mint: #5dcaa5;
  --mint-soft: #e1f5ee;
  --bg: #f1efe8;
  --surface: #fff;
  --surface-soft: #f7faf8;
  --text: #2c2c2a;
  --muted: #666860;
  --border: rgba(4, 52, 44, 0.1);
  --shadow: 0 18px 40px rgba(4, 52, 44, 0.1);
  --radius: 24px;
  --max-width: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Lato", Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(92%, var(--max-width)); margin: 0 auto; }
.topbar { position: sticky; top: 0; z-index: 1000; background: rgba(241,239,232,.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-logo { width: 56px; height: 56px; object-fit: cover; border-radius: 16px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); padding: 0; flex: 0 0 auto; }
.brand-copy strong { display: block; font: 700 1.05rem "Poppins", sans-serif; }
.brand-copy span { display: block; color: var(--muted); font-size: .84rem; font-weight: 700; }
.menu { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.menu a { font: 600 .94rem "Poppins", sans-serif; }
.menu a:hover, .text-link:hover { color: var(--primary-2); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; padding: 12px 21px; border-radius: 999px; font: 700 .95rem "Poppins", sans-serif; text-align: center; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg,#1faf5a,#25d366); box-shadow: 0 16px 32px rgba(37,211,102,.28); }
.btn-secondary { color: var(--primary); background: #fff; border: 1px solid rgba(4,52,44,.14); box-shadow: 0 10px 24px rgba(4,52,44,.08); }
.breadcrumb { padding: 28px 0 0; color: var(--muted); font-size: .92rem; }
.breadcrumb ol { display: flex; gap: 8px; flex-wrap: wrap; list-style: none; }
.breadcrumb a { color: var(--primary); font-weight: 700; }
.hero { padding: 40px 0 54px; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 38px; align-items: center; }
.badge { display: inline-block; margin-bottom: 16px; padding: 8px 14px; border-radius: 999px; color: var(--primary); background: var(--mint-soft); font: 700 .87rem "Poppins",sans-serif; }
h1,h2,h3 { font-family: "Poppins",sans-serif; color: var(--primary); line-height: 1.18; }
h1 { margin-bottom: 18px; font-size: clamp(2.2rem,5vw,4rem); }
.lead { max-width: 700px; color: var(--muted); font-size: 1.08rem; }
.trust-line { margin-top: 16px; color: var(--primary); font-weight: 700; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.price-note { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; padding: 10px 14px; border-radius: 14px; color: var(--primary); background: #fff8ef; border: 1px solid rgba(222,128,53,.24); font-weight: 700; }
.hero-photo { overflow: hidden; min-height: 460px; border-radius: 30px; box-shadow: var(--shadow); }
.hero-photo img { height: 100%; min-height: 460px; object-fit: cover; }
section { padding: 48px 0; }
.section-title { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.section-title h2 { margin-bottom: 10px; font-size: clamp(1.8rem,4vw,2.6rem); }
.section-title p { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.service-card, .benefit-card, .coverage-card, .faq-item, .clinic-copy { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; box-shadow: 0 12px 28px rgba(4,52,44,.07); }
.service-card { overflow: hidden; }
.service-card img { height: 220px; object-fit: cover; }
.service-copy { padding: 22px; }
.service-copy h3 { margin-bottom: 9px; font-size: 1.25rem; }
.service-copy p { color: var(--muted); }
.service-copy .text-link { display: inline-block; margin-top: 13px; color: var(--primary); font-weight: 800; }
.benefit-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.benefit-card { padding: 24px; }
.benefit-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.benefit-card p { color: var(--muted); }
.clinic-copy { padding: 32px; text-align: center; }
.clinic-copy h2 { margin-bottom: 12px; }
.clinic-copy p { max-width: 790px; margin: auto; color: var(--muted); }
.faq-list { display: grid; gap: 14px; max-width: 900px; margin: auto; }
.faq-item { padding: 0 20px; }
.faq-item summary { padding: 19px 0; cursor: pointer; color: var(--primary); font: 700 1rem "Poppins",sans-serif; }
.faq-item p { padding-bottom: 20px; color: var(--muted); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.review-card { display: flex; flex-direction: column; gap: 12px; padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; box-shadow: 0 12px 28px rgba(4,52,44,.07); }
.review-stars { color: #e9a400; font-size: 1.08rem; letter-spacing: .08em; }
.review-card blockquote { color: var(--text); }
.review-card cite { margin-top: auto; color: var(--primary); font-style: normal; font-weight: 700; }
.reviews-more { display: flex; justify-content: center; margin-top: 22px; }
.coverage-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.coverage-card { display: block; padding: 24px; transition: .2s ease; }
.coverage-card:hover { transform: translateY(-3px); border-color: rgba(4,52,44,.25); }
.coverage-card h2, .coverage-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.coverage-card p { color: var(--muted); }
.region-label { margin: 8px 0 18px; color: var(--primary); font: 700 1rem "Poppins",sans-serif; }
.final-cta { padding: 38px; border-radius: 28px; color: #fff; background: linear-gradient(135deg,var(--primary),var(--primary-2)); text-align: center; box-shadow: var(--shadow); }
.final-cta h2 { color: #fff; }
.final-cta p { max-width: 700px; margin: 10px auto 20px; color: rgba(255,255,255,.9); }
footer { margin-top: 38px; padding: 28px 0 34px; border-top: 1px solid var(--border); color: var(--muted); text-align: center; }
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; color: #fff; background: #25d366; box-shadow: 0 16px 32px rgba(37,211,102,.35); z-index: 999; font-size: 1.8rem; }

@media (max-width: 980px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .menu { width: 100%; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .menu::-webkit-scrollbar { display: none; }
  .menu a { flex: 0 0 auto; padding: 9px 13px; border: 1px solid var(--border); border-radius: 999px; background: #fff; white-space: nowrap; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo, .hero-photo img { min-height: 360px; }
}
@media (max-width: 720px) {
  .topbar { position: static; }
  .container { width: min(calc(100% - 32px),var(--max-width)); }
  .brand-copy span { display: none; }
  .service-grid, .benefit-grid, .coverage-grid, .reviews-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 30px; }
  section { padding: 34px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn, .final-cta .btn { width: 100%; }
  .hero-photo, .hero-photo img { min-height: 300px; }
  .final-cta { padding: 28px 20px; }
}
