:root{
  --bg: #f7fbff;
  --bg-soft: #edf5fb;
  --surface: rgba(255,255,255,0.78);
  --surface-strong: #ffffff;
  --text: #0f172a;
  --text-soft: #5f6b7a;
  --text-muted: #8b94a3;
  --line: rgba(15,23,42,0.08);
  --primary-dark: #0f172a;
  --primary-blue: #1f8dd6;
  --primary-cyan: #22c7b8;
  --accent-blue-soft: rgba(144,207,255,0.32);
  --accent-mint-soft: rgba(121,239,220,0.30);
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5d;
  --shadow-xs: 0 8px 24px rgba(15,23,42,0.04);
  --shadow-md: 0 18px 40px rgba(15,23,42,0.08);
  --container: 1180px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  border:none;
  background:none;
  font:inherit;
}

.container{
  width:min(92%, var(--container));
  margin:0 auto;
}

/* FONDO */

.site-background{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  overflow:hidden;
}

.bg-blur{
  position:absolute;
  border-radius:999px;
  filter:blur(90px);
}

.bg-blur-left-top{
  width:420px;
  height:420px;
  top:120px;
  left:-120px;
  background:var(--accent-blue-soft);
}

.bg-blur-left-bottom{
  width:360px;
  height:360px;
  left:-100px;
  bottom:120px;
  background:rgba(173,222,255,0.26);
}

.bg-blur-right-top{
  width:420px;
  height:420px;
  top:120px;
  right:-120px;
  background:var(--accent-mint-soft);
}

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,0.72);
  border-bottom:1px solid rgba(255,255,255,0.8);
}

.header-inner{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-icon{
  width:42px;
  height:42px;
  border-radius:16px;
  background:linear-gradient(135deg, var(--primary-blue), #58b7ff);
  box-shadow:0 12px 24px rgba(31,141,214,0.22);
  position:relative;
}

.brand-icon::before,
.brand-icon::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  background:#fff;
  border-radius:999px;
}

.brand-icon::before{
  width:18px;
  height:4px;
}

.brand-icon::after{ 
  width:4px;
  height:18px;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.08;
}

.brand-text strong{
  font-size:1rem;
  font-weight:800;
  letter-spacing:-0.03em;
}

.brand-text span{
  margin-top:3px;
  font-size:0.84rem;
  color:var(--primary-blue);
  font-weight:500;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:30px;
}

.main-nav a{
  font-size:0.96rem;
  color:#5b6675;
  font-weight:600;
  transition:color 0.25s ease;
}

.main-nav a:hover{
  color:var(--text);
}

.nav-button{
  min-height:52px;
  padding:0 26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:linear-gradient(135deg, #111827, #0f172a);
  color:#fff;
  font-size:0.95rem;
  font-weight:700;
  box-shadow:0 14px 28px rgba(15,23,42,0.16);
}

.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border-radius:16px;
  background:rgba(255,255,255,0.92);
  box-shadow:var(--shadow-xs);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.menu-toggle span{
  width:20px;
  height:2px;
  border-radius:999px;
  background:var(--text);
}

.mobile-menu{
  display:none;
  width:min(92%, var(--container));
  margin:0 auto 14px;
  padding:12px;
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(16px);
  border-radius:24px;
  box-shadow:var(--shadow-md);
}

.mobile-menu a{
  display:block;
  padding:14px 16px;
  border-radius:14px;
  color:#5b6675;
  font-weight:600;
}

.mobile-menu-button{
  margin-top:6px;
  text-align:center;
  background:linear-gradient(135deg, #111827, #0f172a);
  color:#fff !important;
}

.mobile-menu.show{
  display:block;
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:118px 0 40px;
}

.hero-coverage{
  min-height:auto;
  padding:100px 0 80px;
}

.hero-inner{
  text-align:center;
  max-width:900px;
}

.hero-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 20px;
  border-radius:999px;
  background:rgba(255,255,255,0.8);
  border:1px solid rgba(15,23,42,0.06);
  color:#697585;
  font-size:0.92rem;
  font-weight:700;
  letter-spacing:0.03em;
  box-shadow:var(--shadow-xs);
}

.hero-title{
  margin-top:28px;
  font-size:clamp(2.9rem, 6vw, 4.8rem);
  line-height:1.12;
  letter-spacing:-0.07em;
  font-weight:800;
}

.hero-title span{
  display:block;
  background:linear-gradient(90deg, var(--primary-blue), var(--primary-cyan));
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}

.hero-description{
  max-width:720px;
  margin:26px auto 0;
  font-size:1.12rem;
  color:var(--text-soft);
}

.hero-actions{
  margin-top:36px;
  margin-bottom:35px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.btn{
  min-height:60px;
  padding:0 28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  font-weight:700;
  font-size:1.02rem;
  transition:0.25s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-dark{
  background:linear-gradient(135deg, #111827, #0f172a);
  color:#fff;
  box-shadow:0 14px 34px rgba(15,23,42,0.18);
}

.btn-light{
  background:rgba(255,255,255,0.82);
  border:1px solid rgba(15,23,42,0.08);
  color:var(--text);
  box-shadow:var(--shadow-xs);
}

.hero-proof{
  margin-top:42px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 22px;
  border-radius:999px;
  background:rgba(255,255,255,0.85);
  border:1px solid rgba(15,23,42,0.06);
  box-shadow:0 10px 24px rgba(15,23,42,0.08);
  font-weight:600;
  color:#4b5563;
}

.hero-proof-stars,
.reviews-stars,
.marquee-review-stars{
  color:#f6b500;
  letter-spacing:2px;
}

.hero-scroll{
  margin-top:72px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.hero-scroll span{
  font-size:0.8rem;
  color:#8b94a3;
  letter-spacing:0.22em;
  font-weight:700;
}

.hero-scroll-line{
  width:2px;
  height:42px;
  border-radius:999px;
  background:linear-gradient(to bottom, rgba(15,23,42,0.25), transparent);
}

/* REVIEWS */

.reviews-section{
  padding:30px 0 100px;
}

.reviews-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 38px;
}

.reviews-heading h2,
.section-heading h2,
.doctor-content h2,
.contact-info-copy h2{
  font-size:clamp(2.2rem, 4vw, 3.4rem);
  line-height:1.04;
  letter-spacing:-0.05em;
}

.reviews-rating{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.reviews-rating strong{
  font-size:1.55rem;
  font-weight:800;
}

.reviews-heading p,
.section-heading p{
  margin-top:10px;
  font-size:1.05rem;
  color:var(--text-soft);
}

.reviews-marquee{
  width:100vw;
  overflow:hidden;
  position:relative;
  left:50%;
  transform:translateX(-50%);
}

.reviews-marquee-track{
  display:flex;
  gap:24px;
  width:max-content;
  animation:reviewsMarquee 70s linear infinite;
}

.marquee-review-card{
  flex:0 0 340px;
  width:340px;
  min-height:220px;
  padding:24px;
  background:rgba(255,255,255,0.78);
  border:1px solid rgba(15,23,42,0.05);
  border-radius:24px;
  box-shadow:0 8px 24px rgba(0,0,0,0.05);
}

.marquee-review-card p{
  margin-top:12px;
  color:#5f6b7a;
}

.marquee-review-card strong{
  display:block;
  margin-top:16px;
}

@keyframes reviewsMarquee{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* OBRAS SOCIALES - HOME */

.section-coverage-cta{
  padding:90px 0 80px;
}

.coverage-cta-card-premium{
  max-width:1040px;
  margin:0 auto;
  padding:56px 44px;
  text-align:center;
  border-radius:36px;
  background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,251,253,0.88));
  border:1px solid rgba(18,39,61,0.08);
  box-shadow:0 30px 80px rgba(15,33,52,0.08);
}

.coverage-cta-badge{
  display:inline-flex;
  margin-bottom:20px;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(18,39,61,0.08);
  font-size:0.82rem;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(18,39,61,0.72);
}

.coverage-cta-card-premium h2{
  margin-bottom:18px;
  font-size:clamp(2.2rem, 4vw, 3.35rem);
  line-height:1.05;
  letter-spacing:-0.04em;
  color:#10233b;
}

.coverage-cta-card-premium p{
  max-width:760px;
  margin:0 auto 30px;
  font-size:1.05rem;
  line-height:1.8;
  color:rgba(16,35,59,0.68);
}

/* OBRAS SOCIALES - PÁGINA COMPLETA */

.coverage-page-section{
  padding:20px 0 110px;
}

.coverage-intro{
  max-width:780px;
  margin:0 auto 46px;
  text-align:center;
}

.coverage-intro h2{
  font-size:clamp(2.2rem, 4vw, 3.4rem);
  line-height:1.04;
  letter-spacing:-0.055em;
  color:#10233b;
}

.coverage-intro p{
  margin-top:14px;
  color:var(--text-soft);
  font-size:1.05rem;
  line-height:1.75;
}

.coverage-block{
  position:relative;
  margin-bottom:30px;
  padding:34px 30px 32px;
  border-radius:34px;
  background:
    radial-gradient(circle at top right, rgba(34,199,184,0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,251,253,0.86));
  border:1px solid rgba(15,23,42,0.07);
  box-shadow:
    0 22px 60px rgba(15,33,52,0.08),
    inset 0 1px 0 rgba(255,255,255,0.82);
  overflow:hidden;
}

.coverage-block::before{
  content:"";
  position:absolute;
  top:0;
  left:32px;
  right:32px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent);
}

.coverage-block-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:26px;
}

.coverage-block-heading .coverage-cta-badge{
  margin-bottom:12px;
  padding:8px 14px;
  font-size:0.72rem;
}

.coverage-block-heading h3{
  font-size:clamp(1.7rem, 3vw, 2.35rem);
  line-height:1.05;
  letter-spacing:-0.055em;
  color:#10233b;
}

.coverage-block-heading p{
  max-width:430px;
  text-align:right;
  color:rgba(16,35,59,0.62);
  font-size:0.98rem;
  line-height:1.65;
}

.coverage-track{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
}

.coverage-card{
  min-height:66px;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  border-radius:18px;
  background:rgba(255,255,255,0.82);
  border:1px solid rgba(15,23,42,0.07);
  box-shadow:0 10px 24px rgba(15,33,52,0.045);
  color:#20354a;
  font-size:0.95rem;
  line-height:1.25;
  font-weight:700;
  letter-spacing:-0.02em;
  transition:0.25s ease;
}

.coverage-card:hover{
  transform:translateY(-4px);
  background:#ffffff;
  border-color:rgba(31,141,214,0.18);
  box-shadow:0 16px 34px rgba(15,33,52,0.08);
  color:#0f172a;
}

.coverage-cta-card{
  margin-top:42px;
  padding:42px 34px;
  text-align:center;
  border-radius:34px;
  background:
    radial-gradient(circle at top left, rgba(37,211,102,0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,251,253,0.88));
  border:1px solid rgba(18,39,61,0.08);
  box-shadow:0 26px 70px rgba(15,33,52,0.08);
}

.coverage-cta-card h3{
  font-size:clamp(1.8rem, 3vw, 2.5rem);
  line-height:1.05;
  letter-spacing:-0.045em;
  color:#10233b;
}

.coverage-cta-card p{
  max-width:720px;
  margin:14px auto 26px;
  color:var(--text-soft);
  font-size:1.05rem;
  line-height:1.75;
}

.btn-whatsapp{
  background:linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color:#fff;
  box-shadow:0 16px 34px rgba(37,211,102,0.22);
}

.btn-whatsapp:hover{
  box-shadow:0 22px 44px rgba(37,211,102,0.30);
}

/* DOCTOR */

.doctor-section{
  padding:30px 0 90px;
}

.doctor-grid{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:56px;
  align-items:center;
}

.doctor-image-card{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  box-shadow:var(--shadow-md);
}

.doctor-image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  aspect-ratio:4 / 5;
}

.doctor-image-label{
  position:absolute;
  left:20px;
  bottom:20px;
  color:#fff;
}

.doctor-image-label span{
  display:block;
  font-size:0.84rem;
  letter-spacing:0.06em;
}

.doctor-image-label strong{
  display:block;
  margin-top:4px;
  font-size:1.15rem;
  font-weight:800;
}

.doctor-content p{
  margin-top:18px;
  font-size:1.08rem;
  color:var(--text-soft);
}

.doctor-list{
  list-style:none;
  margin-top:28px;
  display:grid;
  gap:14px;
}

.doctor-list li{
  position:relative;
  padding-left:34px;
  font-weight:600;
}

.doctor-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:22px;
  height:22px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(31,141,214,0.10);
  color:var(--primary-blue);
  font-size:0.85rem;
}

/* SERVICES */

.services-section{
  padding:24px 0 100px;
}

.section-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 46px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.service-card-premium{
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,251,253,0.88));
  border:1px solid rgba(15,23,42,0.05);
  border-radius:30px;
  box-shadow:0 14px 34px rgba(15,23,42,0.06);
  transition:0.3s ease;
}

.service-card-premium:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 48px rgba(15,23,42,0.10);
}

.service-card-image{
  width:100%;
  aspect-ratio:16 / 11;
  overflow:hidden;
}

.service-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.45s ease;
}

.service-card-premium:hover .service-card-image img{
  transform:scale(1.05);
}

.service-card-content{
  padding:24px 22px;
}

.service-card-content h3{
  font-size:1.28rem;
  line-height:1.15;
  letter-spacing:-0.03em;
}

.service-card-content p{
  margin-top:12px;
  color:var(--text-soft);
  font-size:1rem;
  line-height:1.65;
}

/* CTA CONTACT */

.contact-cta-section{
  padding:60px 0 130px;
}

.contact-cta-premium-card{
  width:100%;
  padding:42px 40px;
  border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,251,253,0.90));
  border:1px solid rgba(18,39,61,0.08);
  box-shadow:0 28px 70px rgba(15,33,52,0.08);
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  grid-template-areas:
    "kicker actions"
    "title actions"
    "text actions";
  column-gap:40px;
  row-gap:14px;
  align-items:center;
}

.contact-cta-kicker{
  grid-area:kicker;
  width:fit-content;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(18,39,61,0.08);
  font-size:0.84rem;
  font-weight:700;
  letter-spacing:0.16em;
  color:rgba(18,39,61,0.72);
}

.contact-cta-premium-card h2{
  grid-area:title;
  max-width:11ch;
  font-size:clamp(2.5rem, 4vw, 4.1rem);
  line-height:1.02;
  letter-spacing:-0.055em;
  color:#16324a;
}

.contact-cta-premium-card p{
  grid-area:text;
  max-width:620px;
  font-size:1.05rem;
  color:rgba(22,50,74,0.74);
}

.contact-cta-premium-actions{
  grid-area:actions;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.contact-cta-main-btn,
.contact-cta-secondary-btn{
  min-height:58px;
  padding:0 28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-weight:700;
}

.contact-cta-main-btn{
  background:linear-gradient(135deg, #111827, #0f172a);
  color:#fff;
}

.contact-cta-secondary-btn{
  background:rgba(255,255,255,0.86);
  color:#16324a;
  border:1px solid rgba(22,50,74,0.10);
}

/* CASOS REALES */

.real-cases-section{
  padding:0 0 110px;
}

.real-cases-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.real-case-card{
  overflow:hidden;
  border-radius:30px;
  background:rgba(255,255,255,0.9);
  border:1px solid rgba(15,23,42,0.06);
  box-shadow:0 16px 40px rgba(15,23,42,0.07);
}

.real-case-card img{
  width:100%;
  aspect-ratio:16 / 11;
  object-fit:cover;
}

.real-case-card div{
  padding:24px 22px;
}

.real-case-card h3{
  font-size:1.25rem;
  letter-spacing:-0.03em;
}

.real-case-card p{
  margin-top:10px;
  color:var(--text-soft);
}

/* CONTACT INFO */

.contact-info-section{
  padding:0 0 80px;
}

.contact-info-grid{
  display:grid;
  grid-template-columns:minmax(320px, 420px) minmax(0, 1fr);
  gap:32px;
}

.contact-info-list{
  margin-top:24px;
  display:flex;
  flex-direction:column;
  gap:22px;
}

.contact-info-item{
  display:flex;
  gap:14px;
}

.contact-info-icon{
  width:42px;
  height:42px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(31,141,214,0.08);
  color:var(--primary-blue);
  flex-shrink:0;
}

.contact-info-item strong{
  display:block;
  font-weight:700;
}

.contact-info-item p{
  margin-top:4px;
  color:var(--text-soft);
}

.map-card{
  min-height:520px;
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(15,23,42,0.05);
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  background:#fff;
}

.map-card iframe{
  width:100%;
  height:100%;
  border:0;
}

/* FAQ */

.faq-section{
  padding:10px 0 95px;
}

.faq-heading{
  max-width:860px;
  margin:0 auto 34px;
  text-align:center;
}

.faq-kicker{
  display:inline-block;
  margin-bottom:16px;
  font-size:0.92rem;
  font-weight:700;
  letter-spacing:0.18em;
  color:#6f89a5;
}

.faq-heading h2{
  font-size:clamp(2.2rem, 4vw, 4.2rem);
  line-height:1.02;
  letter-spacing:-0.06em;
  color:#284764;
  max-width:12ch;
  margin:0 auto;
}

.faq-list{
  max-width:760px;
  margin:0 auto;
  display:grid;
  gap:18px;
}

.faq-item{
  background:rgba(255,255,255,0.82);
  border:1px solid rgba(40,71,100,0.08);
  border-radius:34px;
  box-shadow:0 14px 36px rgba(40,71,100,0.08);
  overflow:hidden;
}

.faq-question{
  width:100%;
  padding:28px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  text-align:left;
  cursor:pointer;
}

.faq-question span:first-child{
  font-size:1.08rem;
  font-weight:700;
  color:#284764;
}

.faq-toggle{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  font-size:2rem;
  color:#284764;
  transition:0.28s ease;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.35s ease;
}

.faq-answer p{
  padding:0 30px 28px;
  color:#5f6b7a;
}

.faq-item.active .faq-toggle{
  transform:rotate(45deg);
}

/* FOOTER */

.site-footer{
  padding:8px 0 34px;
}

.footer-top{
  padding-top:26px;
  border-top:1px solid rgba(15,23,42,0.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.footer-brand-icon{
  width:38px;
  height:38px;
  border-radius:14px;
  background:linear-gradient(135deg, #111827, #0f172a);
}

.footer-brand strong{
  display:block;
  font-weight:800;
}

.footer-brand span{
  display:block;
  margin-top:2px;
  color:var(--text-muted);
  font-size:0.84rem;
}

.footer-nav{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
}

.footer-nav a{
  color:#5b6675;
  font-weight:600;
}

.footer-bottom{
  margin-top:26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.footer-bottom p{
  color:var(--text-muted);
  font-size:0.92rem;
}

.footer-social a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#6b7280;
}

/* WHATSAPP */

.whatsapp-floating-button{
  position:fixed;
  right:30px;
  bottom:30px;
  z-index:999;
  width:58px;
  height:58px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow:0 18px 34px rgba(37,211,102,0.24);
}

.whatsapp-floating-button img{
  width:32px;
  height:32px;
  filter:brightness(0) invert(1);
}

/* REVEAL */

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1100px){
  .coverage-track{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px){
  .main-nav,
  .nav-button{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .doctor-grid,
  .contact-info-grid{
    grid-template-columns:1fr;
  }

  .services-grid,
  .real-cases-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .contact-cta-premium-card{
    grid-template-columns:1fr;
    grid-template-areas:
      "kicker"
      "title"
      "text"
      "actions";
  }

  .map-card{
    min-height:420px;
  }

  .hero{
    min-height:auto;
    padding:110px 0 36px;
  }

  .hero-coverage{
    padding:86px 0 64px;
  }

  .coverage-block-heading{
    flex-direction:column;
    align-items:flex-start;
  }

  .coverage-block-heading p{
    text-align:left;
    max-width:100%;
  }
}

@media (max-width: 680px){
  .container{
    width:min(94%, var(--container));
  }

  .header-inner{
    min-height:78px;
  }

  .hero-title{
    font-size:clamp(2.55rem, 10vw, 4.8rem);
  }

  .hero-description{
    font-size:1rem;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
    max-width:360px;
  }

  .hero-proof{
    flex-direction:column;
    border-radius:24px;
  }

  .marquee-review-card{
    flex:0 0 280px;
    width:280px;
  }

  .services-grid,
  .real-cases-grid,
  .coverage-track{
    grid-template-columns:1fr;
  }

  .coverage-cta-card-premium{
    padding:38px 22px;
    border-radius:28px;
  }

  .coverage-page-section{
    padding:10px 0 80px;
  }

  .coverage-intro{
    margin-bottom:30px;
  }

  .coverage-block{
    padding:26px 18px 22px;
    border-radius:28px;
  }

  .coverage-card{
    min-height:58px;
    padding:13px 14px;
    border-radius:15px;
  }

  .coverage-cta-card{
    padding:32px 22px;
    border-radius:28px;
  }

  .contact-cta-section{
    padding:20px 0 80px;
  }

  .contact-cta-premium-card{
    padding:32px 22px;
    border-radius:28px;
  }

  .contact-cta-premium-actions{
    flex-direction:column;
  }

  .contact-cta-main-btn,
  .contact-cta-secondary-btn{
    width:100%;
    min-height:64px;
  }

  .section-heading h2,
  .doctor-content h2,
  .contact-info-copy h2{
    font-size:2.2rem;
  }

  .faq-question{
    padding:24px 22px;
  }

  .faq-answer p{
    padding:0 22px 24px;
  }

  .footer-top,
  .footer-bottom{
    align-items:flex-start;
    flex-direction:column;
  }

  .whatsapp-floating-button{
    width:54px;
    height:54px;
    right:16px;
    bottom:16px;
  }

  /* =========================================================
   SECCIÓN CLIENTES - DR. SERGIO ROGELIO PETRONI
========================================================= */

.clientes-section {
  position: relative;
  width: 100%;
  padding: 110px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(52, 211, 153, 0.14), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(59, 130, 246, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 52%, #f4f9fb 100%);
}

.clientes-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.08);
  filter: blur(20px);
  pointer-events: none;
}

.clientes-section::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.08);
  filter: blur(22px);
  pointer-events: none;
}

.clientes-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.clientes-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.clientes-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.08);
  color: #0f766e;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clientes-header h2 {
  margin: 0;
  color: #102033;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.clientes-header p {
  max-width: 660px;
  margin: 18px auto 0;
  color: #667085;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* =========================================================
   SLIDER
========================================================= */

.clientes-slider {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 64px;
}

.clientes-slider-window {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.12),
    0 12px 30px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

.clientes-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.cliente-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  padding: 14px;
  opacity: 0.42;
  transform: scale(0.985);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.cliente-slide.active {
  opacity: 1;
  transform: scale(1);
}

.cliente-slide img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

/* Degradado suave arriba de la imagen */
.cliente-slide::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 38%,
      rgba(15, 23, 42, 0.08) 100%
    );
  pointer-events: none;
}

/* =========================================================
   FLECHAS
========================================================= */

.clientes-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #102033;
  cursor: pointer;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 16px 38px rgba(15, 23, 42, 0.14),
    inset 0 0 0 1px rgba(148, 163, 184, 0.22);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.clientes-arrow i {
  font-size: 1rem;
}

.clientes-arrow:hover {
  background: #0f766e;
  color: #ffffff;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 18px 44px rgba(15, 118, 110, 0.26);
}

.clientes-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.clientes-arrow-prev {
  left: 0;
}

.clientes-arrow-next {
  right: 0;
}

/* =========================================================
   DOTS
========================================================= */

.clientes-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.cliente-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.22);
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.cliente-dot:hover {
  transform: scale(1.18);
  background: rgba(15, 118, 110, 0.48);
}

.cliente-dot.active {
  width: 30px;
  background: #0f766e;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
  .clientes-section {
    padding: 90px 18px;
  }

  .clientes-slider {
    max-width: 860px;
    padding: 0 54px;
  }

  .cliente-slide img {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .clientes-section {
    padding: 76px 16px;
  }

  .clientes-header {
    margin-bottom: 34px;
  }

  .clientes-header p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .clientes-slider {
    padding: 0;
  }

  .clientes-slider-window {
    border-radius: 28px;
  }

  .cliente-slide {
    padding: 10px;
  }

  .cliente-slide img {
    height: 430px;
    border-radius: 22px;
  }

  .cliente-slide::after {
    inset: 10px;
    border-radius: 22px;
  }

  .clientes-arrow {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.94);
  }

  .clientes-arrow-prev {
    left: 12px;
  }

  .clientes-arrow-next {
    right: 12px;
  }
}

@media (max-width: 520px) {
  .clientes-section {
    padding: 68px 14px;
  }

  .clientes-eyebrow {
    font-size: 0.74rem;
    padding: 7px 13px;
  }

  .clientes-header h2 {
    font-size: 2rem;
    letter-spacing: -0.035em;
  }

  .clientes-header p {
    font-size: 0.94rem;
  }

  .clientes-slider-window {
    border-radius: 24px;
  }

  .cliente-slide img {
    height: 360px;
  }

  .clientes-arrow {
    width: 40px;
    height: 40px;
  }

  .clientes-arrow i {
    font-size: 0.86rem;
  }

  .clientes-dots {
    margin-top: 20px;
  }
}

@media (max-width: 390px) {
  .cliente-slide img {
    height: 320px;
  }

  .clientes-header h2 {
    font-size: 1.82rem;
  }
}
}

/* =========================================================
   FIX CARRUSEL CLIENTES - PETRONI
========================================================= */

.clientes-section {
  width: 100%;
  padding: 90px 20px;
  background:
    radial-gradient(circle at 90% 30%, rgba(34, 211, 238, 0.18), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.clientes-container {
  max-width: 1180px;
  margin: 0 auto;
}

.clientes-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.clientes-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f766e;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.clientes-header h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
}

.clientes-header p {
  margin: 16px auto 0;
  max-width: 680px;
  color: #667085;
  font-size: 1rem;
  line-height: 1.7;
}

/* SLIDER */

.clientes-slider {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 64px;
}

.clientes-slider-window {
  width: 100%;
  overflow: hidden;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.clientes-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.75s ease;
}

.cliente-slide {
  min-width: 100%;
  flex: 0 0 100%;
  padding: 14px;
  box-sizing: border-box;
}

.cliente-slide img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

/* FLECHAS */

.clientes-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #101828;
  cursor: pointer;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
  font-size: 1rem;
}

.clientes-arrow-prev {
  left: 0;
}

.clientes-arrow-next {
  right: 0;
}

.clientes-arrow:hover {
  background: #0f766e;
  color: #ffffff;
}

/* DOTS */

.clientes-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

.cliente-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.25);
  cursor: pointer;
  padding: 0;
}

.cliente-dot.active {
  width: 30px;
  background: #0f766e;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .clientes-section {
    padding: 70px 16px;
  }

  .clientes-slider {
    padding: 0;
  }

  .cliente-slide img {
    height: 390px;
  }

  .clientes-arrow {
    width: 42px;
    height: 42px;
  }

  .clientes-arrow-prev {
    left: 12px;
  }

  .clientes-arrow-next {
    right: 12px;
  }
}

@media (max-width: 480px) {
  .clientes-header h2 {
    font-size: 1.9rem;
  }

  .cliente-slide img {
    height: 310px;
  }
}

.coverage-track-with-logos {
  align-items: stretch;
}

.coverage-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 58px;
  text-align: left;
}

.coverage-card-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

.coverage-card-logo span {
  display: inline-block;
  line-height: 1.2;
}

@media (max-width: 520px) {
  .coverage-card-logo {
    gap: 9px;
    min-height: 54px;
  }

  .coverage-card-logo img {
    width: 24px;
    height: 24px;
  }
}

/* Ajuste final logos obras sociales */

.coverage-track-with-logos .coverage-card-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 64px;
  padding: 12px 20px;
  text-align: left;
}

.coverage-track-with-logos .coverage-card-logo img {
  width: 42px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 42px;
  display: block;
}

.coverage-track-with-logos .coverage-card-logo span {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  color: #16304a;
}

@media (max-width: 520px) {
  .coverage-track-with-logos .coverage-card-logo {
    justify-content: flex-start;
    gap: 10px;
    min-height: 58px;
    padding: 11px 16px;
  }

  .coverage-track-with-logos .coverage-card-logo img {
    width: 36px;
    height: 30px;
    flex: 0 0 36px;
  }

  .coverage-track-with-logos .coverage-card-logo span {
    font-size: 14px;
  }
}

/* Logos obras sociales - versión más grande */

.coverage-track-with-logos .coverage-card-logo img {
  width: 54px;
  height: 42px;
  flex: 0 0 54px;
}

.coverage-track-with-logos .coverage-card-logo {
  gap: 14px;
  min-height: 68px;
  padding: 13px 18px;
}

@media (max-width: 520px) {
  .coverage-track-with-logos .coverage-card-logo img {
    width: 44px;
    height: 36px;
    flex: 0 0 44px;
  }

  .coverage-track-with-logos .coverage-card-logo {
    gap: 11px;
    min-height: 62px;
  }
}