@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap");
:root {
  --ink:#304447;
  --blue:#5d87d8;
  --rose:#d97894;
  --cream:#fffdfa;
  --soft:#f4f0eb;
  --mint:#e3eee9;
  --line:#30444720;
  --text:#4e5b5d;
  --serif:"Playfair Display", Georgia, serif;
  --sans:"DM Sans", Arial, sans-serif;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
}
body {
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--sans);
}
body.modal-open {
  overflow:hidden;
}
a {
  color:inherit;
  text-decoration:none;
}
img {
  display:block;
  width:100%;
}
.shell {
  width:min(1200px,calc(100% - 64px));
  margin:auto;
}
.topbar {
  padding:10px 20px;
  background:#526fcb;
  color:white;
  text-align:center;
  font-size:12px;
  font-weight:600;
}
.topbar span {
  margin:0 8px;
  opacity:.6;
}
.site-header {
  position:sticky;
  top:0;
  z-index:20;
  background:#fffdfaf2;
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(12px);
}
.nav {
  display:flex;
  align-items:center;
  gap:24px;
  height:76px;
}
.brand {
  display:flex;
  flex-direction:column;
  font-weight:700;
  font-size:23px;
  letter-spacing:.14em;
}
.brand small {
  margin-top:4px;
  color:var(--rose);
  font-size:8px;
  letter-spacing:.13em;
}
.desktop-nav {
  display:flex;
  gap:20px;
  margin-left:auto;
}
.desktop-nav a {
  font-size:12px;
  font-weight:600;
}
.desktop-nav a:hover,.text-link:hover {
  color:var(--blue);
}
.btn {
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:12px 18px;
  border:0;
  border-radius:999px;
  background:var(--blue);
  color:white;
  font-size:12px;
  font-weight:700;
  cursor:pointer;
  transition:transform .2s,background .2s;
}
.btn:hover {
  background:#456dbb;
  transform:translateY(-2px);
}
.menu-toggle,.mobile-nav,.mobile-book {
  display:none;
}
.eyebrow {
  margin:0 0 11px;
  color:var(--blue);
  font-size:11px;
  font-weight:700;
  letter-spacing:.11em;
}
.text-link {
  border-bottom:1px solid currentColor;
  padding-bottom:4px;
  font-size:12px;
  font-weight:700;
}
.hero {
  display:grid;
  grid-template-columns:45% 55%;
  width:min(1500px,96vw);
  min-height:510px;
  height:clamp(500px,38vw,540px);
  margin:18px auto 0;
  overflow:hidden;
  border-radius:24px;
  background:var(--mint);
}
.hero-copy {
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:42px 48px;
}
.hero h1,h2,h3 {
  font-family:var(--serif);
  font-weight:500;
  letter-spacing:-.04em;
}
.hero h1 {
  max-width:410px;
  margin:0 0 15px;
  font-size:clamp(43px,4.3vw,61px);
  line-height:1.02;
}
.hero-copy>p:not(.eyebrow) {
  max-width:375px;
  margin-bottom:0;
  color:var(--text);
  font-size:15px;
  line-height:1.6;
}
.hero-copy>div {
  display:flex;
  align-items:center;
  gap:20px;
  margin-top:18px;
}
.hero-copy small {
  margin-top:26px;
  color:var(--text);
  font-size:10px;
}
.hero>img {
  height:100%;
  object-fit:cover;
  object-position:58% center;
  filter:saturate(.78);
}
.hero-slider {
  position:relative;
  display:block;
}
.hero-slide {
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:45% 55%;
  opacity:0;
  pointer-events:none;
  transition:opacity .65s ease;
}
.hero-slide.is-active {
  opacity:1;
  pointer-events:auto;
}
.hero-slide .hero-copy {
  min-width:0;
  background:var(--mint);
}
.hero-slide-split .hero-copy {
  background:#fff0e0;
  color:#475d62;
}
.hero-slide-split .hero-copy h1 {
  color:#475d62;
}
.hero-slide-split .hero-copy .eyebrow {
  color:#315b75;
}
.hero-slide-split .hero-copy>p:not(.eyebrow) {
  color:#53676c;
}
.hero-slide-split .hero-copy small {
  color:#647579;
}
.hero-slide-split .hero-copy .btn {
  background:#4a6260;
  color:#fff0e0;
}
.hero-slide-split .hero-copy .btn:hover {
  background:#3c514f;
}
.hero-slide img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:saturate(.78);
}
.hero-dots {
  position:absolute;
  z-index:2;
  bottom:18px;
  left:50%;
  display:flex;
  gap:7px;
  transform:translateX(-50%);
}
.hero-dots button {
  width:8px;
  height:8px;
  padding:0;
  border:0;
  border-radius:999px;
  background:#ffffff9c;
  cursor:pointer;
  transition:width .2s,background .2s;
}
.hero-dots button.is-active {
  width:24px;
  background:#fff;
}
.hero-slider {
  overflow:hidden;
}
.hero-track {
  display:flex;
  width:100%;
  height:100%;
  transition:transform 700ms cubic-bezier(.65,0,.35,1);
  will-change:transform;
}
.hero-slide {
  position:relative;
  inset:auto;
  flex:0 0 100%;
  display:grid;
  min-width:100%;
  opacity:1;
  pointer-events:auto;
  transition:none;
}
.hero-slide-image {
  display:block;
}
.hero-slide-image::after {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.1);
}
.hero-slide-image .hero-copy {
  position:absolute;
  z-index:1;
  top:0;
  bottom:0;
  left:0;
  width:48%;
  background:transparent;
  color:#fff;
}
.hero-slide-image .hero-copy .eyebrow,.hero-slide-image .hero-copy p,.hero-slide-image .hero-copy small {
  color:#fff;
}
.hero-slide-image .text-link {
  color:#fff;
}
.hero-slide-image>img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-position:center 40%;
}
.hero-slide-promo {
  grid-template-columns:48% 52%;
  background:#435c5d;
  color:#fff;
}
.hero-slide-promo .hero-copy {
  background:transparent;
}
.hero-slide-promo .hero-copy .eyebrow {
  color:#f0b4c2;
}
.hero-slide-promo .hero-copy p,.hero-slide-promo .hero-copy small {
  color:#f1f4ee;
}
.hero-promo-images {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  padding:48px 48px 48px 0;
}
.hero-promo-images img {
  width:43%;
  height:74%;
  border-radius:18px;
  object-fit:cover;
}
.hero-promo-images img:last-child {
  margin-top:45px;
}
.hero-dots {
  gap:8px;
}
.hero-dots button {
  background:#ffffff9a;
}
.hero-dots button.is-active {
  width:26px;
  background:#fff;
}
.medical-trust {
  margin-top:26px;
  border-block:1px solid var(--line);
  background:#fff;
}
.medical-trust-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr) auto;
  align-items:stretch;
}
.medical-trust-grid>div {
  display:grid;
  grid-template-columns:24px 1fr;
  column-gap:10px;
  padding:23px 16px;
  border-right:1px solid var(--line);
}
.trust-icon {
  grid-row:1/3;
  color:var(--blue);
  font-size:19px;
  line-height:1;
}
.medical-trust strong {
  font-size:12px;
}
.medical-trust small {
  margin-top:5px;
  color:var(--text);
  font-size:10px;
  line-height:1.35;
}
.trust-book {
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 20px;
  color:var(--blue);
  font-size:11px;
  font-weight:700;
  white-space:nowrap;
}
.trust-book span {
  font-size:16px;
}
.categories {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
  padding:43px 0;
}
.categories a {
  display:flex;
  justify-content:space-between;
  padding:17px;
  border:1px solid var(--line);
  border-radius:14px;
  background:white;
  font-size:13px;
  font-weight:700;
}
.categories a span {
  color:var(--blue);
}
.section {
  padding:90px 0;
}
.soft {
  background:var(--soft);
}
.section-head {
  display:flex;
  justify-content:space-between;
  gap:50px;
  align-items:end;
  margin-bottom:42px;
}
.section-head h2 {
  max-width:650px;
  margin:0;
  font-size:clamp(36px,4vw,56px);
  line-height:1.08;
}
.section-head>p {
  max-width:315px;
  margin:0;
  color:var(--text);
  font-size:14px;
  line-height:1.65;
}
.treatment-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.treatment-grid article {
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:18px;
  background:white;
}
.treatment-grid img {
  height:250px;
  object-fit:cover;
}
.treatment-grid h3,.treatment-grid p,.treatment-grid a {
  margin-left:20px;
  margin-right:20px;
}
.treatment-grid h3 {
  margin-top:19px;
  margin-bottom:9px;
  font-size:27px;
}
.treatment-grid p {
  min-height:62px;
  color:var(--text);
  font-size:13px;
  line-height:1.55;
}
.treatment-grid a {
  display:inline-block;
  margin-bottom:21px;
}
.promo {
  padding:25px 0 90px;
}
.promo-wrap {
  display:grid;
  grid-template-columns:1fr 1fr;
  overflow:hidden;
  border-radius:22px;
  background:#dbe9ed;
}
.promo img {
  height:410px;
  object-fit:cover;
}
.promo-wrap div {
  align-self:center;
  padding:55px;
}
.promo h2 {
  margin:0 0 17px;
  font-size:51px;
  line-height:1.04;
}
.promo p:not(.eyebrow) {
  color:var(--text);
  line-height:1.65;
}
.promo .btn {
  margin-top:11px;
}
.why {
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:75px;
}
.why h2 {
  margin:0;
  font-size:51px;
  line-height:1.08;
}
.why-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.why-grid article {
  padding:20px 0;
  border-top:1px solid var(--line);
}
.why-grid b {
  color:var(--blue);
  font-size:11px;
}
.why-grid h3 {
  margin:17px 0 7px;
  font-size:24px;
}
.why-grid p {
  margin:0;
  color:var(--text);
  font-size:13px;
  line-height:1.55;
}
.result-grid {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  overflow:hidden;
  border-radius:22px;
  background:var(--mint);
}
.result-grid img {
  height:430px;
  object-fit:cover;
}
.result-grid div {
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:55px;
}
.result-grid h3 {
  margin:0 0 14px;
  font-size:41px;
  line-height:1.08;
}
.result-grid p {
  color:var(--text);
  line-height:1.65;
}
.result-grid .btn {
  width:max-content;
  margin-top:15px;
}
.specialist-grid {
  display:grid;
  grid-template-columns:1fr 1fr .8fr;
  gap:18px;
}
.specialist-grid article {
  overflow:hidden;
  border-radius:18px;
  background:white;
}
.specialist-grid img {
  height:300px;
  object-fit:cover;
  object-position:top;
}
.specialist-grid h3,.specialist-grid strong,.specialist-grid article>p:not(.eyebrow) {
  display:block;
  margin-left:22px;
  margin-right:22px;
}
.specialist-grid h3 {
  margin-top:19px;
  margin-bottom:5px;
  font-size:28px;
}
.specialist-grid strong {
  color:var(--blue);
  font-size:11px;
}
.specialist-grid article>p:not(.eyebrow) {
  margin-bottom:24px;
  color:var(--text);
  font-size:13px;
}
.specialist-note {
  display:flex;
  flex-direction:column;
  justify-content:end;
  padding:29px;
  background:var(--ink)!important;
  color:white;
}
.specialist-note h3 {
  margin:8px 0 25px!important;
  font-size:30px;
  line-height:1.1;
}
.specialist-note .text-link {
  width:max-content;
}
.quotes {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.quotes blockquote {
  margin:0;
  padding:29px;
  border-radius:16px;
  background:var(--soft);
  font-family:var(--serif);
  font-size:23px;
  line-height:1.35;
}
.quotes footer {
  margin-top:26px;
  color:var(--text);
  font-family:var(--sans);
  font-size:11px;
  font-weight:700;
}
.faq {
  background:var(--mint);
}
.faq-grid {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:90px;
}
.faq h2 {
  margin:0;
  font-size:50px;
}
.faq details {
  border-top:1px solid var(--line);
}
.faq summary {
  display:flex;
  justify-content:space-between;
  padding:21px 0;
  list-style:none;
  cursor:pointer;
  font-size:15px;
  font-weight:700;
}
.faq summary span {
  color:var(--blue);
  font-size:20px;
}
.faq details p {
  margin:0 0 23px;
  color:var(--text);
  line-height:1.6;
  font-size:14px;
}
.final-cta {
  padding:105px 0;
  text-align:center;
  background:#fff8f5;
}
.final-cta h2 {
  margin:0;
  font-size:62px;
}
.final-cta>div>p:not(.eyebrow) {
  color:var(--text);
}
.final-cta .btn {
  margin-top:12px;
}
.quotes {
  gap:16px;
}
.quotes blockquote {
  display:flex;
  flex-direction:column;
  min-height:205px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fffdf9;
  color:var(--ink);
  font-family:var(--sans);
  font-size:inherit;
  line-height:normal;
}
.review-stars {
  color:#c89546;
  font-size:12px;
  letter-spacing:2px;
}
.quotes blockquote p {
  margin:17px 0 20px;
  font-family:var(--serif);
  font-size:19px;
  line-height:1.38;
}
.quotes footer {
  display:flex;
  flex-direction:column;
  gap:5px;
  margin-top:auto;
  padding:15px 0 0;
  border-top:1px solid var(--line);
  background:transparent;
  color:var(--ink);
  font-size:11px;
}
.quotes footer span {
  color:var(--text);
  font-size:10px;
  font-weight:500;
}
footer {
  padding:58px 0 20px;
  background:var(--ink);
  color:white;
}
.footer-grid {
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr 1fr;
  gap:35px;
}
.footer-grid p {
  color:#cbd4d2;
  font-size:12px;
  line-height:1.6;
}
.footer-grid strong {
  display:block;
  margin-bottom:15px;
  color:#d9a3b2;
  font-size:11px;
}
.footer-grid>div:not(:first-child) {
  display:grid;
  align-content:start;
  gap:10px;
}
.footer-grid>div:not(:first-child) a {
  color:#dfe5e3;
  font-size:12px;
}
.legal {
  display:flex;
  justify-content:space-between;
  margin-top:48px;
  padding-top:18px;
  border-top:1px solid #ffffff24;
  color:#b9c3c0;
  font-size:10px;
}
.modal-backdrop {
  position:fixed;
  z-index:100;
  inset:0;
  display:grid;
  place-items:center;
  padding:20px;
  background:#304447b8;
}
.booking-modal {
  position:relative;
  width:min(580px,100%);
  max-height:90vh;
  overflow:auto;
  padding:40px;
  border-radius:18px;
  background:white;
}
.booking-modal h2 {
  font-size:42px;
}
.modal-close {
  position:absolute;
  top:14px;
  right:14px;
  border:0;
  border-radius:50%;
  width:35px;
  height:35px;
  background:var(--soft);
}
.booking-modal label {
  display:flex;
  flex-direction:column;
  gap:7px;
  margin:15px 0;
  font-size:11px;
  font-weight:700;
}
.booking-modal input,.booking-modal select,.booking-modal textarea {
  padding:12px;
  border:1px solid var(--line);
  border-radius:7px;
}
.form-two {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.btn-full {
  width:100%;
}
.modal-direct-link,.booking-modal small {
  display:block;
  margin-top:15px;
  text-align:center;
  font-size:11px;
}
@media(max-width:900px) {
  .desktop-nav,.nav>.btn {
    display:none
  }
  .menu-toggle {
    display:flex;
    flex-direction:column;
    gap:6px;
    margin-left:auto;
    border:0;
    background:none
  }
  .menu-toggle span {
    width:21px;
    height:1px;
    background:var(--ink)
  }
  .mobile-nav {
    display:grid;
    max-height:0;
    overflow:hidden;
    background:white
  }
  .mobile-nav.is-open {
    max-height:400px
  }
  .mobile-nav a {
    padding:15px 24px;
    border-top:1px solid var(--line);
    font-size:13px
  }
  .hero {
    grid-template-columns:1fr
  }
  .hero-copy {
    padding:60px
  }
  .hero>img {
    min-height:450px
  }
  .treatment-grid {
    grid-template-columns:1fr 1fr
  }
  .why,.faq-grid {
    grid-template-columns:1fr;
    gap:35px
  }
  .specialist-grid {
    grid-template-columns:1fr 1fr
  }
  .specialist-note {
    min-height:250px
  }
  .categories {
    grid-template-columns:repeat(3,1fr)
  }
}
@media(max-width:900px) {
  .medical-trust-grid {
    grid-template-columns:1fr 1fr
  }
  .medical-trust-grid>div {
    border-bottom:1px solid var(--line)
  }
  .trust-book {
    min-height:64px;
    grid-column:1/-1;
    justify-content:center
  }
}
@media(max-width:900px) {
  .hero-slider {
    height:auto;
    min-height:0
  }
  .hero-slide {
    position:relative;
    display:none;
    grid-template-columns:1fr;
    opacity:1
  }
  .hero-slide.is-active {
    display:grid
  }
  .hero-slide .hero-copy {
    padding:52px 8vw
  }
  .hero-slide img {
    height:420px
  }
  .hero-dots {
    bottom:12px
  }
}
@media(max-width:600px) {
  body {
    padding-bottom:58px
  }
  .shell {
    width:calc(100% - 32px)
  }
  .nav {
    height:73px
  }
  .hero {
    margin-top:16px;
    border-radius:18px
  }
  .hero-copy {
    padding:42px 26px
  }
  .hero h1 {
    font-size:47px
  }
  .hero-copy>div {
    align-items:flex-start;
    flex-direction:column;
    gap:18px
  }
  .hero>img {
    min-height:330px
  }
  .categories {
    grid-template-columns:1fr 1fr;
    padding:25px 0
  }
  .categories a {
    font-size:12px
  }
  .section {
    padding:70px 0
  }
  .section-head {
    display:block;
    margin-bottom:30px
  }
  .section-head>p {
    margin-top:16px
  }
  .treatment-grid,.specialist-grid,.quotes {
    grid-template-columns:1fr
  }
  .treatment-grid img {
    height:260px
  }
  .promo-wrap,.result-grid {
    grid-template-columns:1fr
  }
  .promo img {
    height:280px
  }
  .promo-wrap div,.result-grid div {
    padding:32px
  }
  .promo h2,.why h2,.faq h2 {
    font-size:42px
  }
  .why-grid {
    grid-template-columns:1fr
  }
  .result-grid img {
    height:300px
  }
  .result-grid h3 {
    font-size:36px
  }
  .final-cta {
    padding:75px 0
  }
  .final-cta h2 {
    font-size:50px
  }
  .footer-grid {
    grid-template-columns:1fr 1fr
  }
  .legal {
    display:block;
    line-height:2
  }
  .mobile-book {
    position:fixed;
    z-index:50;
    bottom:0;
    left:0;
    right:0;
    display:flex;
    align-items:center;
    justify-content:center;
    height:58px;
    background:var(--blue);
    color:white;
    font-size:12px;
    font-weight:700
  }
  .form-two {
    grid-template-columns:1fr
  }
  .booking-modal {
    padding:36px 21px
  }
  .topbar {
    font-size:10px
  }
}
@media(max-width:600px) {
  .medical-trust {
    margin-top:16px
  }
  .medical-trust-grid {
    grid-template-columns:1fr
  }
  .medical-trust-grid>div {
    padding:18px 0;
    border-right:0
  }
  .trust-book {
    padding:19px 0;
    justify-content:flex-start
  }
}
@media(max-width:600px) {
  .hero-slide .hero-copy {
    padding:42px 26px
  }
  .hero-slide img {
    height:330px
  }
  .hero-dots {
    bottom:10px
  }
}
@media(prefers-reduced-motion:reduce) {
  .hero-slide,.hero-dots button {
    transition:none
  }
}
@media(max-width:900px) {
  .hero-track {
    height:auto
  }
  .hero-slide,.hero-slide.is-active {
    position:relative;
    display:grid;
    flex:0 0 100%;
    min-width:100%;
    opacity:1
  }
  .hero-slide-image {
    display:block
  }
  .hero-slide-image .hero-copy {
    position:relative;
    width:auto
  }
  .hero-slide-image>img {
    position:relative;
    height:420px
  }
  .hero-slide-promo {
    grid-template-columns:1fr
  }
  .hero-promo-images {
    height:360px;
    padding:24px
  }
  .hero-promo-images img {
    height:100%
  }
}
@media(max-width:600px) {
  .hero-slide-image>img {
    height:330px
  }
  .hero-promo-images {
    height:300px
  }
  .hero-slide-promo .hero-copy {
    padding-bottom:24px
  }
}
/* Ajustes responsive globales */
@media (max-width:1100px) {
  .shell {
    width:min(100% - 48px,1200px);
  }
  .desktop-nav {
    gap:16px;
  }
  .desktop-nav a {
    font-size:11px;
  }
  .hero-slide .hero-copy {
    padding-inline:40px;
  }
  .medical-trust-grid {
    grid-template-columns:repeat(4,1fr);
  }
  .trust-book {
    padding-inline:15px;
  }
  .treatment-grid {
    gap:14px;
  }
  .treatment-grid h3 {
    font-size:24px;
  }
  .specialist-grid {
    grid-template-columns:1fr 1fr .72fr;
  }
}
@media (max-width:760px) {
  .shell {
    width:calc(100% - 36px);
  }
  .topbar {
    padding:9px 16px;
  }
  .hero-slider {
    width:calc(100% - 32px);
  }
  .hero-slide .hero-copy {
    padding:38px 28px;
  }
  .hero-slide .hero-copy h1 {
    font-size:clamp(39px,9vw,52px);
  }
  .hero-slide .hero-copy small {
    margin-top:18px;
  }
  .hero-slide-promo {
    grid-template-columns:44% 56%;
  }
  .hero-promo-images {
    gap:12px;
    padding:30px 28px 30px 0;
  }
  .hero-promo-images img {
    width:46%;
  }
  .categories {
    grid-template-columns:repeat(2,1fr);
  }
  .categories a:last-child {
    grid-column:1/-1;
  }
  .section-head {
    align-items:start;
    flex-direction:column;
    gap:16px;
  }
  .section-head > p {
    max-width:540px;
  }
  .promo-wrap,.result-grid {
    grid-template-columns:1fr;
  }
  .promo img {
    height:320px;
  }
  .why {
    grid-template-columns:1fr;
    gap:32px;
  }
  .specialist-grid {
    grid-template-columns:1fr 1fr;
  }
  .specialist-note {
    grid-column:1/-1;
    min-height:220px;
  }
  .faq-grid {
    grid-template-columns:1fr;
    gap:30px;
  }
  .footer-grid {
    grid-template-columns:repeat(2,1fr);
  }
}
@media (max-width:520px) {
  .topbar {
    font-size:10px;
  }
  .hero-slide .hero-copy {
    padding:34px 24px;
  }
  .hero-slide .hero-copy h1 {
    font-size:42px;
  }
  .hero-slide .hero-copy > div {
    gap:14px;
  }
  .hero-slide-image .hero-copy {
    width:100%;
  }
  .hero-slide-promo {
    grid-template-columns:1fr;
  }
  .hero-promo-images {
    height:245px;
    padding:18px 22px 22px;
  }
  .hero-promo-images img:last-child {
    margin-top:25px;
  }
  .medical-trust-grid {
    grid-template-columns:1fr;
  }
  .medical-trust-grid > div {
    border-right:0;
  }
  .trust-book {
    grid-column:auto;
  }
  .treatment-grid,.specialist-grid,.quotes {
    grid-template-columns:1fr;
  }
  .treatment-grid article {
    display:grid;
    grid-template-columns:120px 1fr;
    column-gap:0;
  }
  .treatment-grid img {
    grid-row:1/5;
    height:100%;
    min-height:190px;
  }
  .treatment-grid h3,.treatment-grid p,.treatment-grid a {
    margin-left:18px;
    margin-right:18px;
  }
  .treatment-grid h3 {
    margin-bottom:4px;
  }
  .treatment-grid p {
    min-height:0;
    margin-bottom:10px;
  }
  .result-grid div {
    padding:30px 24px;
  }
  .quotes blockquote {
    min-height:0;
  }
  .footer-grid {
    grid-template-columns:1fr;
  }
  .legal {
    display:flex;
    flex-direction:column;
    gap:4px;
  }
}
/* Ajuste de densidad del hero */
@media (min-width:901px) {
  .hero {
    grid-template-columns:45% 55%;
    align-items:stretch;
    height:520px;
    min-height:500px;
    max-height:540px;
    overflow:hidden;
  }
  .hero-copy {
    display:flex;
    justify-content:center;
    padding:52px 48px;
  }
  .hero h1 {
    max-width:390px;
    margin-bottom:13px;
    font-size:clamp(40px,3.9vw,56px);
    line-height:1.04;
  }
  .hero-copy > p:not(.eyebrow) {
    max-width:365px;
    font-size:15px;
    line-height:1.55;
  }
  .hero-copy > div {
    margin-top:16px;
  }
  .hero-copy small {
    margin-top:22px;
  }
  .hero > img {
    height:100%;
    min-height:0;
    object-fit:cover;
    object-position:54% 35%;
  }
}
/* Composición exclusiva de la campaña de tecnología (slide 3). */
.hero-slide-promo {
  grid-template-columns:1fr;
}
.hero-slide-promo {
  grid-template-columns:43% 57%;
}
.hero-before-after-visual {
  display:grid;
  place-items:center;
  padding:28px 34px 28px 12px;
}
.hero-before-after-visual img {
  width:100%;
  height:100%;
  max-height:450px;
  border-radius:20px;
  object-fit:contain;
  filter:none;
}
@media (max-width:900px) {
  .hero-slide-promo {
    grid-template-columns:1fr;
  }
  .hero-before-after-visual {
    min-height:360px;
    padding:20px 30px;
  }
}
@media (max-width:600px) {
  .hero-before-after-visual {
    min-height:280px;
    padding:16px 22px;
  }
}
.hero-promo-images {
  position:relative;
  display:block;
  height:100%;
  padding:28px 42px 28px 12px;
}
.hero-promo-images img {
  position:absolute;
  width:auto;
  height:auto;
  margin:0;
  border-radius:20px;
  object-fit:cover;
  box-shadow:none;
}
.hero-promo-images img:first-child {
  top:20px;
  right:38px;
  bottom:20px;
  width:61%;
  height:calc(100% - 40px);
  object-position:center;
}
.hero-promo-images img:last-child {
  right:0;
  bottom:28px;
  width:32%;
  height:42%;
  margin:0;
  border:1px solid #ffffff66;
  background:#111;
  object-fit:contain;
  object-position:center;
}
@media (max-width:900px) {
  .hero-promo-images {
    height:360px;
    padding:22px;
  }
  .hero-promo-images img:first-child {
    top:20px;
    right:18%;
    bottom:20px;
    width:57%;
    height:calc(100% - 40px);
  }
  .hero-promo-images img:last-child {
    right:5%;
    bottom:24px;
    width:34%;
    height:42%;
  }
}
@media (max-width:600px) {
  .hero-promo-images {
    height:300px;
    padding:16px;
  }
  .hero-promo-images img:first-child {
    top:16px;
    right:18%;
    bottom:16px;
    width:58%;
    height:calc(100% - 32px);
  }
  .hero-promo-images img:last-child {
    right:4%;
    bottom:20px;
    width:35%;
    height:42%;
  }
}
/* Tarjeta comparativa exclusiva del slide 3: recorta el área útil del recurso, sin fondo negro. */
.hero-promo-images {
  position:relative;
}
.hero-promo-images img.promo-main-image {
  top:20px;
  right:38px;
  bottom:20px;
  width:61%;
  height:calc(100% - 40px);
}
.before-after-card {
  position:absolute;
  z-index:2;
  right:0;
  bottom:24px;
  width:270px;
  padding:13px;
  border:1px solid #ffffffaa;
  border-radius:16px;
  background:#fffdfa;
  color:var(--ink);
  box-shadow:0 10px 25px #18272826;
}
.hero-promo-images .before-after-card {
  right:34px;
  bottom:50%;
  width:390px;
  transform:translateY(50%);
}
.before-after-card > span {
  display:block;
  margin-bottom:9px;
  color:var(--rose);
  font-size:8px;
  font-weight:700;
  letter-spacing:.1em;
}
.before-after-panels {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px;
}
.before-after-panels figure {
  position:relative;
  height:115px;
  margin:0;
  overflow:hidden;
  border-radius:10px;
  background:#f2e5df;
}
.before-after-panels figure img {
  position:absolute;
  top:-11px;
  width:235%;
  height:auto;
  max-width:none;
  filter:none;
}
.before-panel img {
  left:-13px;
}
.after-panel img {
  right:-13px;
}
.before-after-panels figcaption {
  position:absolute;
  right:7px;
  bottom:7px;
  margin:0;
  padding:4px 6px;
  border-radius:999px;
  background:#fffdfad9;
  color:var(--ink);
  font-size:7px;
  font-weight:700;
  letter-spacing:.08em;
}
.before-after-card small {
  display:block;
  margin-top:9px;
  color:var(--text);
  font-size:9px;
}
@media (max-width:900px) {
  .hero-promo-images img.promo-main-image {
    top:20px;
    right:18%;
    bottom:20px;
    width:57%;
    height:calc(100% - 40px);
  }
  .before-after-card {
    right:4%;
    bottom:18px;
    width:250px;
  }
  .hero-promo-images .before-after-card {
    right:8%;
    bottom:50%;
    width:330px;
  }
}
@media (max-width:600px) {
  .hero-promo-images img.promo-main-image {
    top:16px;
    right:18%;
    bottom:16px;
    width:58%;
    height:calc(100% - 32px);
  }
  .before-after-card {
    right:4%;
    bottom:14px;
    width:218px;
    padding:10px;
  }
  .hero-promo-images .before-after-card {
    right:50%;
    bottom:50%;
    width:250px;
    transform:translate(50%,50%);
  }
  .before-after-panels figure {
    height:92px;
  }
}

/* Responsive final: layout fluido y lectura consistente en pantallas estrechas. */
@media (max-width:1100px) {
  .shell {
    width:min(1200px,calc(100% - 48px));
  }
  .nav {
    gap:18px;
  }
  .desktop-nav {
    gap:14px;
  }
  .hero-slide .hero-copy {
    padding-inline:40px;
  }
  .treatment-grid {
    gap:14px;
  }
  .treatment-grid h3 {
    font-size:24px;
  }
}

@media (max-width:900px) {
  .nav {
    height:70px;
  }
  .hero-slider {
    width:calc(100% - 48px);
    height:auto;
    min-height:0;
  }
  .hero-track {
    height:auto;
  }
  .hero-slide,.hero-slide.is-active {
    display:grid;
    grid-template-columns:1fr;
    min-height:0;
  }
  .hero-slide .hero-copy {
    padding:44px 40px;
  }
  .hero-slide img {
    height:clamp(330px,52vw,420px);
  }
  .hero-slide-image {
    display:grid;
  }
  .hero-slide-image::after {
    display:none;
  }
  .hero-slide-image .hero-copy {
    position:relative;
    width:auto;
    background:#1e3839;
    color:#fff;
  }
  .hero-slide-image>img {
    position:relative;
    height:clamp(330px,52vw,420px);
  }
  .hero-slide-promo {
    grid-template-columns:1fr;
  }
  .hero-before-after-visual {
    min-height:340px;
    padding:24px 32px;
  }
  .medical-trust-grid {
    grid-template-columns:repeat(2,1fr);
  }
  .medical-trust-grid>div:nth-child(2n) {
    border-right:0;
  }
  .trust-book {
    grid-column:1/-1;
    min-height:62px;
    justify-content:center;
  }
  .categories {
    grid-template-columns:repeat(3,1fr);
  }
  .section {
    padding:72px 0;
  }
  .section-head {
    align-items:flex-start;
    flex-direction:column;
    gap:16px;
    margin-bottom:32px;
  }
  .section-head>p {
    max-width:580px;
  }
  .treatment-grid {
    grid-template-columns:repeat(2,1fr);
  }
  .promo-wrap,.result-grid,.why,.faq-grid {
    grid-template-columns:1fr;
  }
  .promo img {
    height:340px;
  }
  .why,.faq-grid {
    gap:36px;
  }
  .specialist-grid {
    grid-template-columns:1fr 1fr;
  }
  .specialist-note {
    grid-column:1/-1;
    min-height:220px;
  }
  .footer-grid {
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:640px) {
  body {
    padding-bottom:58px;
  }
  .shell,.hero-slider {
    width:calc(100% - 32px);
  }
  .topbar {
    padding:9px 16px;
    font-size:10px;
    line-height:1.4;
  }
  .topbar span {
    display:none;
  }
  .nav {
    height:66px;
  }
  .brand {
    font-size:21px;
  }
  .hero {
    margin-top:16px;
    border-radius:18px;
  }
  .hero-slide .hero-copy {
    padding:36px 24px;
  }
  .hero-slide .hero-copy h1 {
    font-size:clamp(38px,10.5vw,48px);
  }
  .hero-copy>div {
    align-items:flex-start;
    flex-direction:column;
    gap:16px;
  }
  .hero-slide img,.hero-slide-image>img {
    height:300px;
  }
  .hero-before-after-visual {
    min-height:270px;
    padding:18px 22px;
  }
  .categories {
    grid-template-columns:1fr 1fr;
    gap:10px;
    padding:26px 0;
  }
  .categories a:last-child {
    grid-column:1/-1;
  }
  .medical-trust-grid {
    grid-template-columns:1fr;
  }
  .medical-trust-grid>div,.medical-trust-grid>div:nth-child(2n) {
    padding:18px 0;
    border-right:0;
  }
  .trust-book {
    grid-column:auto;
    justify-content:flex-start;
    padding:19px 0;
  }
  .section {
    padding:64px 0;
  }
  .section-head h2,.promo h2,.why h2,.faq h2 {
    font-size:clamp(36px,9vw,43px);
  }
  .treatment-grid,.specialist-grid,.quotes {
    grid-template-columns:1fr;
  }
  .treatment-grid img {
    height:260px;
  }
  .promo {
    padding:18px 0 64px;
  }
  .promo img,.result-grid img {
    height:280px;
  }
  .promo-wrap div,.result-grid div {
    padding:32px 24px;
  }
  .result-grid h3 {
    font-size:36px;
  }
  .final-cta {
    padding:72px 0;
  }
  .final-cta h2 {
    font-size:clamp(43px,12vw,52px);
  }
  .footer-grid {
    grid-template-columns:1fr 1fr;
    gap:28px 20px;
  }
  .legal {
    display:block;
    line-height:2;
  }
}

@media (max-width:480px) {
  .hero-slide .hero-copy {
    padding:32px 22px;
  }
  .hero-slide .hero-copy h1 {
    font-size:38px;
  }
  .hero-copy>p:not(.eyebrow) {
    font-size:14px;
  }
  .hero-slide img,.hero-slide-image>img {
    height:260px;
  }
  .hero-before-after-visual {
    min-height:240px;
    padding:16px;
  }
  .treatment-grid article {
    display:block;
  }
  .treatment-grid img {
    min-height:0;
    height:235px;
  }
  .treatment-grid h3,.treatment-grid p,.treatment-grid a {
    margin-left:18px;
    margin-right:18px;
  }
  .footer-grid {
    grid-template-columns:1fr;
  }
  .legal {
    display:flex;
    flex-direction:column;
    gap:4px;
  }
  .booking-modal {
    max-height:calc(100vh - 24px);
    padding:32px 20px;
  }
}
