:root{
  --b1:#2f5fa6;
  --b2:#4798d0;
  --b3:#5bb6e6;
  --b4:#6dcafc;
  --b5: #02398d;
  --white:#fff;--black:#111;--gray:#666;--gray-light:#f5f8fc;--gray-soft:#eaf2fb;
}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:'Open Sans',sans-serif;color:var(--black);background:var(--white);overflow-x:hidden;}

/* DROPDOWN */
/* CONTENEDOR */

.dropdown-menu{
    position: relative;
    display: inline-block;
}

/* BOTÓN DEL NAV */

.dropdown-toggle{
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #3d3d3d;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    transition: color .25s ease;
}

/* HOVER */

.dropdown-toggle:hover{
    color: #4798d0;
}

/* FLECHA */

.dropdown-toggle::after{
    content: "▾";
    font-size: 10px;
    margin-left: 6px;
    color: #4798d0;
    transition: transform .25s ease;
}

/* ROTACIÓN */

.dropdown-menu.active .dropdown-toggle::after{
    transform: rotate(180deg);
}

/* MENÚ */

.dropdown-content{
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 310px;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow:
      0 12px 30px rgba(0,0,0,.08),
      0 2px 8px rgba(0,0,0,.04);
    z-index: 1000;
}

/* ACTIVO */

.dropdown-menu.active .dropdown-content{
    display: block;
}

/* LINKS */

.dropdown-content a{
    display: block;
    padding: 22px 26px;
    text-decoration: none;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    border-bottom: 1px solid #f2f2f2;
    transition: all .22s ease;
}

/* ÚLTIMO */

.dropdown-content a:last-child{
    border-bottom: none;
}

/* HOVER LINKS */

.dropdown-content a:hover{
    background: #fafafa;
    color: #4798d0;
    padding-left: 34px;
}

/* ─── HEADER ─── */

header{
  position:sticky;top:0;z-index:300;
  background:var(--white);
  border-bottom:1px solid rgba(47,95,166,.1);
  height:70px;display:flex;align-items:center;
  padding:0 56px;justify-content:space-between;
  box-shadow:0 2px 20px rgba(47,95,166,.07);
}
.logo-wrap img{
  height:48px;
  width:auto;
}
nav{
  display:flex;
  align-items:center;
  gap:6px;
}
nav a{
  color:#333;
  text-decoration:none;
  font-size:13.5px;
  font-weight:500;
  padding:8px 14px;
  border-radius:6px;
  transition:.2s;
}
nav a:hover{
  color:var(--b1);
  background:var(--gray-soft);
}
.nav-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background:var(--b1)!important;
  color:#fff!important;
  font-weight:600!important;
  border-radius:8px;
  padding:9px 20px!important;
  margin-left:8px;
  box-shadow:0 4px 14px rgba(47,95,166,.3);
}
.nav-cta:hover{
  background:var(--b2)!important;
}
.nav-cta img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  transform: translateY(-1px); /* micro ajuste fino */
}

/* ─── HERO ─── */

.hero{
  position:relative;height:calc(100vh - 70px);min-height:520px;max-height:760px;
  background:linear-gradient(100deg,#071a30 0%,var(--b1) 42%,transparent 70%),
             url('') center/cover no-repeat;
  display:flex;align-items:center;overflow:hidden;
}

/* placeholder foto hero */

.hero-bg-ph{
  position:absolute;inset:0;
  background:linear-gradient(135deg,#0a1f3d 0%,var(--b1) 45%,var(--b2) 75%,var(--b3) 100%);
  z-index:0;
}
.hero-bg-ph::after{
  content:' Insertar foto de personal médico BIOS aquí';
  position:absolute;top:50%;right:12%;transform:translateY(-50%);
  width:42%;height:80%;
  background:rgba(255,255,255,.07);
  border:2px dashed rgba(255,255,255,.3);
  border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  font-size:13px;color:rgba(255,255,255,.55);font-family:'Open Sans',sans-serif;
  letter-spacing:.5px;text-align:center;
}
.hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(135deg,#0a1f3d 0%,var(--b1) 45%,var(--b2) 75%,var(--b3) 100%);
}
.hero-content{
  position:relative;z-index:2;
  padding:0 80px;max-width:640px;
  animation:fadeLeft .8s ease both;
}
@keyframes fadeLeft{from{opacity:0;transform:translateX(-28px);}to{opacity:1;transform:translateX(0);}}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:7px;
  background:rgba(109,202,252,.15);border:1px solid rgba(109,202,252,.35);
  border-radius:100px;padding:5px 16px;margin-bottom:22px;
  font-size:11px;font-weight:700;letter-spacing:2px;color:var(--b4);text-transform:uppercase;
}
.hero-eyebrow span{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--b4);
  animation:pulse 2s infinite;
}

@keyframes pulse{0%,100%{opacity:1}50%{opacity:.3}}

.hero h1{
  font-family:'Raleway',sans-serif;
  font-size:clamp(36px,4.5vw,62px);
  font-weight:800;
  line-height:1.08;
  color:#fff;margin-bottom:8px;
}
.hero h1 span{
  color:var(--b4);
}
.hero p{
  font-size:16px;
  line-height:1.7;
  color:rgba(255,255,255,.78);
  margin:14px 0 32px;
}
.hero-btns{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content: center;
}
.hero-btns .btn-white{
  flex: 0 0 100%;
  text-align:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 24px;
  border-radius:8px;
  font-family:'Open Sans',sans-serif;
  font-size:14px;font-weight:600;
  text-decoration:none;
  border:none;
  cursor:pointer;
  transition:.25s;
}
.btn-white{
  background:#fff;
  color:var(--b1);
  box-shadow:0 4px 18px rgba(0,0,0,.14);
}
.btn-white:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(0,0,0,.2);
}
.btn-outline-w{
  background:transparent;
  color:#fff;
  border:1.5px solid rgba(255,255,255,.45);
}
.btn-outline-w:hover{
  background:rgba(255,255,255,.12);
}
.btn-b4{
  background:var(--b4);
  color:var(--b1);
  font-weight:700;
}
.btn-b4:hover{
  background:#88d8ff;
  transform:translateY(-2px);
}
.btn-b1{
  background:var(--b1);
  color:#fff;
  box-shadow:0 4px 18px rgba(47,95,166,.35);
  margin-top: 15px;
}
.btn-b1:hover{
  background:var(--b2);transform:translateY(-2px);
}
.btn img{
  width:18px;
  height:18px;
  object-fit:contain;
  display:inline-block;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px; 
}

.btn img{
  transform: translateY(-1px); 
}
.hero-slider {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 46%;
  max-width: 620px;
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  z-index: 2; 
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider .slide.active {
  opacity: 1;
}

/* imágenes */

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 4s ease;
}
.slide.active img {
  transform: scale(1);
}
.slide.active {
  opacity: 1;
}

/* SOLO SLIDER CARD */

.slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.slider .slide.active {
  opacity: 1;
}

/* ─── ACCESOS RÁPIDOS (rotativas) ─── */

.quick-strip{
  background:#fff;
  border-bottom:1px solid rgba(47,95,166,.08);
  padding:0 56px;
  display:grid;grid-template-columns:repeat(3,1fr);
  box-shadow:0 4px 24px rgba(47,95,166,.06);
}
.qs-item{
  display:flex;align-items:center;gap:0;
  border-right:1px solid rgba(47,95,166,.08);
  overflow:hidden;transition:.25s;cursor:pointer;text-decoration:none;
}
.qs-item:last-child{
  border-right:none;
}
.qs-item:hover{
  background:var(--gray-soft);
}

/* placeholder imagen rotativa */

.qs-img{
  width:130px;height:90px;flex-shrink:0;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;
  font-size:11px;color:rgba(255,255,255,.7);
  text-align:center;padding:8px;
}
.qs-img-label{
  font-size:9px;
  letter-spacing:1px;
  text-transform:uppercase;
  opacity:.8;
}
.qs-text{
  padding:14px 20px;
}
.qs-text h4{
  font-size:14px;
  font-weight:700;
  color:var(--b1);
  margin-bottom:4px;
}
.qs-text p{
  font-size:12px;
  color:var(--gray);
  line-height:1.4;
}
.qs-arrow{
  margin-left:auto;
  color:var(--b3);
  font-size:18px;
  padding-right:20px;
  transition:.2s;
}
.qs-item:hover .qs-arrow{
  transform:translateX(4px);
  color:var(--b1);
}

/* ─── STATS ─── */

.stats{
  background:var(--b1);
  padding:36px 56px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.stat{
  text-align:center;
  border-right:1px solid rgba(255,255,255,.15);
  padding:4px 20px;
}
.stat:last-child{
  border-right:none;
}
.stat-n{
  font-family:'Raleway',sans-serif;
  font-size:46px;
  font-weight:800;
  color:var(--b4);line-height:1;}
.stat-l{
  font-size:12px;
  color:rgba(255,255,255,.7);
  margin-top:6px;
}
.stat-s{
  font-size:10px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:rgba(255,255,255,.4);
  margin-bottom:4px;
}

/* ─── SECCIÓN GENÉRICA ─── */

.sec{
  padding:80px 56px;
}
.sec-gray{
  background:var(--gray-light);
}
.sec-white{
  background:#fff;
}

.eyebrow{
  font-size:11px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--b2);
  margin-bottom:10px;
}
.sec-title{
  font-family:'Raleway',
  sans-serif;font-size:
  clamp(24px,2.8vw,38px);
  font-weight:800;
  color:var(--b1);line-height:1.2;
  margin-bottom:12px;
}
.sec-sub{
  font-size:15px;
  color:var(--gray);
  line-height:1.7;
  max-width:580px;
  margin: 0 auto;
  text-align: center;
}
.sec-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:48px;
  text-align: center;
  gap:24px;
}
.sec-header > div {
  max-width: 700px;
  margin: 0 auto;
}

/* ─── SERVICIOS ─── */

.svc-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:rgba(47,95,166,.08);
  border:1px solid rgba(47,95,166,.08);
  border-radius:16px;
  overflow:hidden;
}
.svc-card{
  background:#fff;
  padding:36px 28px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  transition:.3s;
  cursor:pointer;
  gap:0;
  text-decoration:none;
  color:inherit;
}
.svc-card:hover{
  background:var(--gray-soft);
  transform:translateY(-2px);
  box-shadow:0 8px 32px rgba(47,95,166,.1);
  position:relative;
  z-index:1;
}
.svc-icon-wrap{
  width:72px;
  height:72px;
  border:1.5px solid rgba(71,152,208,.3);
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
  transition:.3s;
}
.svc-icon-wrap img{
  width:42px;
  height:42px;
  object-fit:contain;
}
.svc-card:hover .svc-icon-wrap{
  border-color:var(--b2);
  background:var(--gray-soft);
}
.svc-card h3{
  font-size:15px;
  font-weight:700;
  color:#333;
  margin-bottom:8px;
}
.svc-card p{
  font-size:12.5px;
  color:var(--gray);
  line-height:1.6;
}
.svc-link{
  margin-top:14px;
  font-size:12px;
  font-weight:700;
  color:var(--b2);
  letter-spacing:.5px;
}
.svc-card.featured{
  background:linear-gradient(145deg,var(--b1),var(--b2));
}
.svc-card.featured:hover{
  background:linear-gradient(145deg,var(--b2),var(--b3));
}
.svc-card.featured h3{
  color:#fff;
}
.svc-card.featured p{
  color:rgba(255,255,255,.8);
}
.svc-card.featured .svc-link{
  color:var(--b4);
}
.svc-card.featured .svc-icon-wrap{
  border-color:rgba(255,255,255,.3);
}

/* SVG ICONS médicos */

svg.ico{display:block;}


/* ─── CÓMO CUIDAMOS ─── */

.care-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

/* LADO IZQUIERDO */

.care-left {
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* LADO DERECHO */

.care-right {
  position: relative;
  overflow: hidden;
  display: flex;
  padding: 0;
}

/* CONTENEDOR DE IMAGEN */

.care-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  line-height: 0;
}

/* IMAGEN */

.care-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAY AZUL */

.care-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(47, 95, 166, 0.45),
    rgba(47, 95, 166, 0.55)
  );
}

/* TARJETAS FLOTANTES */

.care-stats {
  position: absolute;
  top: 80%; 
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
}
/* TARJETA */

.care-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15); 
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 35px;
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.care-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;

  background: linear-gradient(
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.05)
  );

  pointer-events: none;
}

/* NÚMERO */

.care-number {
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color:var(--b5);
  margin-bottom: 25px; 
}
.care-label {
  font-size: 12px;
  color:var(--b5);
  line-height: 1.3;
}
.modelo-texto{
  margin: 30px 0 40px;
}
.modelo-texto p{
  font-size: 1rem;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 10px;
}
.modelo-cierre{
  color: var(--b5);
  font-weight: 700;
}

/* ─── PILARES ─── */

.pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(47,95,166,.09);
  box-shadow: 0 2px 12px rgba(47,95,166,.05);
  transition: .25s;
}

.pillar:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 24px rgba(47,95,166,.1);
}

.p-num {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex-shrink: 0;
  background: linear-gradient(135deg,var(--b1),var(--b3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.pillar h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--b1);
  margin-bottom: 3px;
}

.pillar p {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── BOLETÍN ─── */

.bol-card{
  background:linear-gradient(145deg,var(--b1),var(--b2) 55%,var(--b3));
  border-radius:24px;
  padding:44px 38px;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.bol-card::before{
  content:'';
  position:absolute;
  top:-50px;right:-50px;
  width:200px;height:200px;
  border-radius:50%;
  background:rgba(109,202,252,.15);
}
.bol-card h3{
  font-family:'Raleway',sans-serif;
  font-size:22px;
  font-weight:800;
  margin-bottom:10px;
}
.bol-card p{
  font-size:14px;
  opacity:.85;
  line-height:1.65;
  margin-bottom:20px;
}
.routes{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:16px;
}
.route{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  border-radius:8px;padding:8px 12px;
  font-size:12px;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:6px;
}
.info-items{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:28px;
}
.info-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:18px 20px;
  background:var(--gray-light);
  border-radius:16px;
  border:1px solid rgba(47,95,166,.07);
}
.info-item div{
  display:flex;
  flex-direction:column;
  align-items: flex-start;
  text-align: left;
  justify-content:center;
}

.info-item strong{
  font-size:15px;
  color:var(--b1);
  display:block;
  font-weight: 700;
  margin-bottom:2px;
}
.info-item span{
  font-size:12.5px;
  color:var(--gray);
  line-height: 1.5;
}

/* CONTENEDOR GENERAL */
.boletin-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* CARD */
.bol-card {
  background: var(--b1);
  color: white;
  padding: 30px;
  border-radius: 16px;
}

/* TEXTO SUPERIOR */
.bol-eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}

/* BOTÓN */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-white {
  background: white;
  color: var(--b1);
  width: 100%;
}

/* LINKS DE CÁNCER */

.cancer-links{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:26px;
}

/* CARD */

.card-btn{
  text-decoration:none;
  background:
  rgba(255,255,255,.10);
  border:
  1px solid rgba(255,255,255,.10);
  border-radius:20px;
  padding:22px 18px;
  min-height:170px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  transition:.28s ease;
}

.card-btn:hover{
  transform:translateY(-4px);
  background:
  rgba(255,255,255,.14);
  border-color:
  rgba(255,255,255,.16);
}

/* ICONO */

.icon-btn{
  width:52px;
  height:52px;
  object-fit:contain;
  margin-bottom:14px;
}

/* TITULO */

.card-btn h4{
  color:#fff;
  font-size:1.15rem;
  font-weight:700;
  line-height:1.3;
  margin-bottom:10px;
  font-family: 'Raleway', sans-serif;
}
.card-btn h4.mama{
  color:#ff8fc2;
}
.card-btn h4.colon{
  color:#8bbdff;
}
.card-btn h4.cervix{
  color:#5ee5c7;
}
.card-btn h4.prostata{
  color:#76d2ff;
}
/* MINI STAT */

.mini-stat{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:5px 11px;
  border-radius:999px;
  background:
  rgba(255,255,255,.10);
  border:
  1px solid rgba(255,255,255,.08);
  color:
  rgba(255,255,255,.82);
  font-size:.78rem;
  font-weight:500;
  font-style: italic;
  backdrop-filter:blur(8px);
}

/* RESPONSIVE */

@media(max-width:700px){
  .cancer-links{
    grid-template-columns:1fr;
  }

}

/* ICONOS BOTONES */

.icon-btn {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* INFO ITEMS */

.info-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}


/* ICONOS INFO */

.icon-info {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-top: 4px;
  flex-shrink: 0;
}

/* TEXTO INFO */
.info-item strong {
  display: block;
  color: var(--b1);
}

.info-item span {
  display: block;
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .boletin-wrap {
    grid-template-columns: 1fr;
  }
}
/* ─── JORNADAS ─── */

.jornadas-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:48px;
}
.jc{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(47,95,166,.09);
  transition:.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
  
.jc:hover{
  transform:translateY(-5px);
  box-shadow:0 16px 40px rgba(47,95,166,.12);
}
/* FOTO JORNADA placeholder */
.jc-img{
  height:180px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  position:relative;
  overflow: hidden;
}
.jc-img-frame{
  position:absolute;
  inset:10px;
  border:2px dashed rgba(255,255,255,.3);
  border-radius:8px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
}
.jc-img-frame span{
  font-size:11px;
  color:rgba(255,255,255,.65);
  letter-spacing:1px;
  text-transform:uppercase;
}
.jc-img-frame small{
  font-size:10px;
  color:rgba(255,255,255,.45);
}
.jc-body{
  padding:18px 20px;
}
.jc-date{
  font-size:11px;
  font-weight:700;
  color:var(--b2);
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:7px;
}
.jc-body h4{
  font-size:14.5px;
  font-weight:700;
  color:var(--b1);
  margin-bottom:6px;
}
.jc-body p{
  font-size:13px;
  color:var(--gray);
  line-height:1.6;
}


/* CARD */

.jc {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.jc:hover {
  transform: translateY(-5px);
}

.jc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAY SUAVE */

.jc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(47,95,166,0.2),
    rgba(47,95,166,0.4)
  );
}

/* CONTENIDO */

.jc-body {
  padding: 18px;
}

.jc-date {
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
}

.jc-body h4 {
  margin: 0 0 8px;
  color: var(--b1);
}

.jc-body p {
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .jornadas-grid {
    grid-template-columns: 1fr;
  }
}
/* ─── SEDES ─── */

.sedes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */

.sede-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.sede-card:hover {
  transform: translateY(-5px);
}

/* IMAGEN */

.sede-photo {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.sede-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAY */

.sede-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(47,95,166,0.2),
    rgba(47,95,166,0.4)
  );
}

/* CONTENIDO */

.sede-body{
  padding:24px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

/* TITULO */

.sede-body h4 {
    margin: 0 0 20px;
    font-family: 'Raleway', sans-serif;
    color: var(--b1);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

/* ITEMS */
.sede-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    width: 100%;
    min-width: 0;
}
 /* UBICACIÓN CLICKEABLE */
.sede-location {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    color: inherit;
    text-decoration: none;
    min-width: 0;
    transition: all 0.2s ease;
}


/* ICONO DE UBICACIÓN */

.sede-location img {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
    display: block;
    margin-top: 2px;
    flex: 0 0 20px;
    opacity: 0.75;
}


/* TEXTO */

.sede-location span {
    flex: 1;
    min-width: 0;
    color: #555;
    font-size: 13px;
    line-height: 1.6;
    transition: color 0.2s ease;
}


/* EFECTO AL PASAR EL MOUSE */

.sede-location:hover span {
    color: var(--b1);
}
.sede-location:hover img {
    opacity: 1;
}

/* ICONOS */

.sede-info img {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
    display: block;
    margin-top: 2px;
    flex: 0 0 20px;
    opacity: 0.75;
}

/* TEXTO */

.sede-info span {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    text-align: left;
    min-width: 0;
    flex: 1;
}

/* BOTON */

.sede-btn{
  margin-top:18px;
  align-self:center;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--b1);
  color:white;
  padding:12px 26px;
  border-radius:12px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.5px;
  text-decoration:none;
  transition:.25s;
}

.sede-btn:hover{
  background:var(--b2);
  transform:translateY(-2px);
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .sedes-grid {
    grid-template-columns: 1fr;
  }
}

/* MOVILES */

.moviles-band{
  background:linear-gradient(135deg,var(--b1),var(--b2) 55%,var(--b3));
  border-radius:20px;
  padding:40px 50px;

  display:flex;
  align-items:center;
  justify-content:space-between; 
  gap:40px;

  position:relative;
  overflow:hidden;
}

/* DECORACIÓN */
.moviles-band::after{
  content:'';
  position:absolute;
  right:-60px;
  top:-60px;
  width:250px;
  height:250px;
  border-radius:50%;
  background:rgba(109,202,252,.12);
}

/* BLOQUE VANS */
.mv-vans{
  display:flex;
  align-items:center;
  gap:20px;
  flex-shrink:0;
  z-index:1;
}

/* VAN GRANDE */
.mv-main{
  text-align:center;
}
.mv-main img{
  width:160px;
  height:auto;
  display:block;
}

.mv-main svg{
  width:160px;
}

.mv-main p{
  font-size:11px;
  color:rgba(255,255,255,.7);
  margin-top:6px;
}

/* VANS PEQUEÑAS */
.mv-small{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}
.mv-small img{
  width:95px;
  height:auto;
  display:block;
}
.mv-small svg{
  width:95px;
}

.mv-small p{
  font-size:11px;
  color:rgba(255,255,255,.7);
  margin-top:4px;
}

/* TEXTO */
.mv-text{
  flex:1;
  color:#fff;
  max-width:520px; 
  z-index:1;
}

.mv-text h3{
  font-size:22px;
  font-weight:800;
  margin-bottom:8px;
}

.mv-text p{
  font-size:14px;
  line-height:1.6;
  opacity:.9;
}

/* BOTÓN */
.mv-btn{
  z-index:1;
}

.mv-btn .btn{
  white-space:nowrap;
  color:var(--b1);
  padding:10px 18px;
  border-radius:10px;
}
@media (max-width: 900px){
  .moviles-band{
    flex-direction:column;
    text-align:center;
  }

  .mv-vans{
    justify-content:center;
  }

  .mv-text{
    max-width:100%;
  }

  .mv-btn{
    margin-top:10px;
  }
}
/* ─── BANNER PQRSF ─── */

.pqrsf-banner{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  min-height:240px;
  display:flex;
  align-items:center;
  background:linear-gradient(100deg,var(--b1) 0%,var(--b2) 45%,transparent 68%);
  margin-bottom:36px;
}
/* FOTO PQRSF placeholder */
.pqrsf-img-ph{
  position:absolute;inset:0;z-index:0;
  background:linear-gradient(135deg,var(--b2),var(--b3));
}
.pqrsf-img-ph::after{
  content:'📸 Insertar foto de paciente/atención aquí';
  position:absolute;
  right:0;
  top:0;
  bottom:0;
  width:45%;
  background:rgba(255,255,255,.08);
  border-left:2px dashed rgba(255,255,255,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  color:rgba(255,255,255,.5);
  text-align:center;
  padding:20px;
  font-family:'Open Sans',sans-serif;
}
.pqrsf-overlay{
  position:absolute;
  inset:0;z-index:1;
  background:linear-gradient(90deg,rgba(7,26,48,.75) 0%,rgba(7,26,48,.4) 55%,transparent 72%);
}
.pqrsf-content{
  position:relative;
  z-index:2;
  padding:44px 56px;
  color:#fff;
}
.pqrsf-content h2{
  font-family:'Raleway',sans-serif;
  font-size:clamp(22px,2.5vw,32px);
  font-weight:800;
  margin-bottom:8px;
}
.pqrsf-content p{
  font-size:14px;
  opacity:.85;
  line-height:1.6;
  max-width:400px;
  margin-bottom:24px;
}

/* DERECHOS PANEL */

.derechos-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.panel {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(47,95,166,.08);
  box-shadow: 0 8px 28px rgba(47,95,166,.08);
}
.panel-head{
  background:linear-gradient(135deg,var(--b1),var(--b2));
  padding:20px 26px;
  color:#fff;
}
.panel-head h3{
  font-size:16px;
  font-weight:700;
}
.panel-head p{
  font-size:12px;
  opacity:.75;
  margin-top:3px;
}
.panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-head {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1); 
  opacity: 0.9;
}
.panel-body{
  padding:28px;
}
.check-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:9px;
}
.check-list li{
  display:flex;
  gap:9px;
  font-size:13px;
  color:#444;
  align-items:flex-start;
  line-height:1.5;
}
.check-list li::before{
  content:'✓';
  color:var(--b2);
  font-weight:700;
  flex-shrink:0;
  margin-top:1px;
}
.sec-label{
  font-size:11.5px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--b2);
  margin:16px 0 10px;
}
.step-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background:var(--gray-light);
  border-radius:10px;
  padding:12px 14px;
}
.step-n{
  width:28px;
  height:28px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--b1),var(--b3));
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:700;
  color:#fff;
  flex-shrink:0;
}
.step strong{
  font-size:13px;
  color:var(--b1);
  display:block;
  margin-bottom:2px;
}
.step span{
  font-size:12px;
  color:var(--gray);
}

/* CONTENEDOR */

.pqrsf-banner{
  margin-top:32px;
  border-radius:20px;
  overflow:hidden;
  gap:0;
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:stretch;
}

/* LADO IZQUIERDO */

.pqrsf-left{
  flex:1;
  padding:50px;
  background:linear-gradient(135deg,var(--b1),var(--b2));
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  position: relative;
  z-index: 2;
}

.pqrsf-left h2{
  font-family:'Raleway',sans-serif;
  font-size:28px;
  font-weight:800;
  margin-bottom:10px;
}

.pqrsf-left p{
  font-size:14px;
  opacity:.9;
  line-height:1.6;
  max-width:420px;
  margin-bottom:20px;
  border: none;
}

/* BOTÓN */

.pqrsf-left .btn{
  align-self:flex-start;
  color:var(--b1);
}

/* LADO DERECHO (IMAGEN) */

.pqrsf-right{
  flex:1;
  min-height:260px;
  border: none;
  overflow:hidden;
}

.pqrsf-right img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

  object-position: 80% center; 
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1); 
}

/* RESPONSIVE */
@media (max-width: 900px){
  .pqrsf-banner{
    flex-direction:column;
  }
  .pqrsf-right{
    height:200px;
  }
}
/* RECONOCIMIENTOS */
.reco-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: 48px auto 0;
  gap: 24px;

  align-items: start; 
}
.reco {
  background: #fff;
  border: 1px solid rgba(47,95,166,.1);
  border-radius: 16px;
  padding: 34px 24px;
  text-align: center;
  box-shadow: 0 3px 14px rgba(47,95,166,.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 240px;
  transition: .3s;
}

/* hover bonito */
.reco:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(47,95,166,.14);
  border-color: var(--b3);
}

/* ICONO */
.reco-ico {
  width: 60px;
  height: 60px;
  margin-bottom: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.reco-ico img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

/* TITULO */
.reco h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--b1);
  line-height: 1.4;
  margin-top: 12px;

  min-height: 42px; 
}

/* TEXTO */
.reco p {
  font-size: 12px;
  color: var(--gray);
  margin-top: 6px;

  min-height: 30px;
}
/* CONTENEDOR DEL BLOQUE */
.sec-white {
  text-align: center;
}

/* TITULO */
.sec-title {
  text-align: center;
  margin: 8px auto 12px;
}

/* SUBTEXTO */
.sec-sub {
  text-align: center;
  max-width: 620px; 
  line-height: 1.6;
}

/* EYEBROW */
.eyebrow {
  text-align: center;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 6px;
}

/* FOOTER */
footer {
  background: #071830;
  color: rgba(255,255,255,.65);
  padding: 60px 56px 28px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}

/* LOGO */
.footer-logo img {
  height: 46px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

/* TEXTO */
.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 300px;
}

/* SUPERSALUD */
.supersalud {
  margin-top: 20px;
}

.supersalud img {
  height: 40px;
  object-fit: contain;
}

/* TITULOS */
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

/* LISTAS */
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: 13px;
  transition: .2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* CONTACTO */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

.footer-contact img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* blancos */
  margin-top: 2px;
}

/* DIVIDER */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 11.5px;
  color: rgba(255,255,255,.35);
}

/* LINKS */
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 11.5px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}
.supersalud {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 20px;
  padding: 10px 18px;

  background: rgba(255,255,255,0.05); 
  border: 1px solid rgba(255,255,255,0.12); 
  border-radius: 10px;

  backdrop-filter: blur(4px); 
}

/* imagen */
.supersalud img {
  height: 28px; 
  object-fit: contain;
  display: block;
  filter: brightness(1.1);
}

@media(max-width:960px){
  header{padding:0 20px;}nav{display:none;}
  .hero-content{padding:0 24px;}
  .quick-strip,.stats{grid-template-columns:1fr;}
  .sec{padding:50px 24px;}
  .svc-grid,.jornadas-grid,.sedes-grid,.derechos-grid{grid-template-columns:1fr;}
  .care-wrap,.boletin-wrap{grid-template-columns:1fr;}
  .sec-header{flex-direction:column;align-items:flex-start;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .moviles-band{flex-direction:column;text-align:center;}
}

/* HERO PRINCIPAL RESPONSIVO */
.hero {
  min-height: clamp(500px, calc(100vh - 70px), 760px);
  height: auto;
}

.hero-content {
  width: min(46%, 640px);
  padding-inline: clamp(24px, 6vw, 80px);
}

.hero-slider {
  right: clamp(24px, 6vw, 80px);
  width: min(44%, 620px);
}

@media (max-width: 1100px) {
  .hero-content {
    width: 52%;
    padding-inline: 40px;
  }

  .hero-slider {
    right: 28px;
    width: 42%;
  }
}

@media (max-width: 900px) {
  header {
    height: 60px;
    padding-inline: 16px;
  }

  .hero {
    min-height: 0;
    display: block;
    padding: 44px 20px 32px;
  }

  .hero-content {
    width: 100%;
    max-width: 640px;
    padding: 0;
  }

  .hero-slider {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 620px;
    margin: 32px auto 0;
  }

  .hero-btns {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-inline: 16px;
  }

  .hero-eyebrow {
    max-width: 100%;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-btns .btn {
    width: 100%;
  }
}
@media (max-width: 768px){

  /* HEADER */
  header{
    padding: 0 16px;
    height: 60px;
  }

  .logo-wrap img{
    height: 40px;
  }

  /* HERO */
  .hero{
    height: auto;
    min-height: 480px;
  }

  .hero-content{
    padding: 40px 20px;
    max-width: 100%;
  }

  .hero h1{
    font-size: 28px;
  }

  .hero p{
    font-size: 14px;
  }

  /* quitar imagen lateral en móvil */
  .hero-bg-ph::after{
    display: none;
  }

  /* BOTONES */
  .hero-btns{
    flex-direction: column;
    align-items: stretch;
  }

  .btn{
    width: 100%;
    justify-content: center;
  }


  /* BOLETIN */
  .boletin-wrap{
    grid-template-columns: 1fr;
    gap: 30px;
  }


  /* DERECHOS */
  .derechos-grid{
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom{
    flex-direction: column;
    text-align: center;
  }
}
.cancer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.card-btn {
  text-decoration: none;
  padding: 15px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  color: white;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.card-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}
.cancer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.card-btn {
  text-decoration: none;
  padding: 15px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  color: white;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.card-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}

/* CONTENEDOR DE TODAS LAS CARDS */
.qs-container {
  display: flex;
  gap: 16px; 
  flex-wrap: wrap;
  
}

/* CONTENEDOR PRINCIPAL */
.qs-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  flex: 1; /* que se distribuyan */
  min-width: 280px; /* evita que se aplasten */
}

/* HOVER MÁS PRO */
.qs-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* BLOQUE IZQUIERDO (IMAGEN) */
.qs-img {
  background: linear-gradient(135deg, var(--b1), var(--b2));
  width: 140px;
  min-height: 110px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* IMAGEN */
.qs-img img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* TEXTO DEBAJO DE LA IMAGEN */
.qs-img-label {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  letter-spacing: 0.5px;
}

/* TEXTO DERECHO */
.qs-text {
  flex: 1;
  padding: 16px;
}

.qs-text h4 {
  margin: 0 0 6px;
  color: #2f5fa6;
  font-size: 16px;
}

.qs-text p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.4;
}

/* FLECHA */
.qs-arrow {
  padding: 0 16px;
  font-size: 18px;
  color: #5aa0d6;
  transition: transform 0.2s ease;
}

/* ANIMACIÓN DE FLECHA */
.qs-item:hover .qs-arrow {
  transform: translateX(4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .qs-item {
    margin-bottom: 14px;
  }
  .qs-item:last-child {
    margin-bottom: 0;
  }
}
/* ══════════════════ ESTADOS FINANCIEROS ══════════════════ */

body{
  background:#f8fbff;
}

/* MAIN */

.page-shell{
  max-width:1180px;
  margin:0 auto;
  padding:70px 24px 90px;
  position:relative;
}

/* EFECTOS */

.page-shell::before{
  content:"";
  position:absolute;
  top:140px;
  right:-120px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:rgba(71,152,208,.12);
  filter:blur(90px);
  z-index:-1;
}

.page-shell::after{
  content:"";
  position:absolute;
  bottom:100px;
  left:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:rgba(37,99,235,.08);
  filter:blur(90px);
  z-index:-1;
}


/* HERO */

.page-header-estados{
  margin-bottom:40px;
  text-align: center;
  margin-left: 18%;

}

.page-title{
  max-width:720px;
}

.page-title h1{
  font-family:'Raleway',sans-serif;
  font-size:clamp(42px,6vw,60px);
  line-height:.95;
  letter-spacing:-2px;
  color:var(--b1);
  margin:14px 0 22px;
}

.page-title p{
  color:var(--gray);
  font-size:15px;
  line-height:1.9;
}

/* INTRO */

.section-intro{
  background:#fff;
  padding:26px 30px;
  border-radius:28px;
  border:1px solid rgba(37,99,235,.08);
  box-shadow:
    0 18px 40px rgba(15,23,42,.05);
  margin-bottom:36px;
}

.section-intro p{
  color:var(--gray);
  line-height:1.9;
  font-size:15px;
}

/* GRID */

.pdf-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:26px;
}

/* CARD */

.pdf-card{
  position:relative;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-radius:30px;
  padding:32px;
  overflow:hidden;
  border:1px solid rgba(37,99,235,.08);
  box-shadow:
    0 20px 45px rgba(15,23,42,.05);

  transition:.35s;
}

.pdf-card:hover{
  transform:translateY(-8px);

  box-shadow:
    0 28px 60px rgba(37,99,235,.12);
}

/* BADGE */

.pdf-badge{
  position:absolute;
  top:24px;
  right:24px;
  background:linear-gradient(
    135deg,
    var(--b1),
    var(--b2)
  );

  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.08em;
}
.pdf-actions{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.view-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:15px 18px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(37,99,235,.14);
  color:var(--b1);
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.view-btn:hover{
  transform:translateY(-2px);
  background:rgba(37,99,235,.04);
  box-shadow:0 10px 22px rgba(37,99,235,.08);
}

.download-btn{
  display:flex;
  align-items:center;
  justify-content:center;

  width:100%;

  padding:15px 18px;

  border-radius:18px;

  background:linear-gradient(
    135deg,
    var(--b1),
    var(--b2)
  );

  color:#fff;

  text-decoration:none;

  font-weight:700;

  transition:.3s;
}

.download-btn:hover{
  transform:translateY(-2px);

  box-shadow:
    0 12px 30px rgba(37,99,235,.20);
}
/* ICON */

.pdf-icon{
  width:78px;
  height:78px;

  border-radius:24px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(37,99,235,.08);

  margin-bottom:24px;
}

.pdf-icon img{
  width:40px;
  height:40px;

  object-fit:contain;
}

/* TEXT */

.pdf-card h2{
  color:var(--b1);

  font-size:2rem;

  margin-bottom:12px;
}

.pdf-card p{
  color:var(--gray);

  line-height:1.8;

  margin-bottom:28px;
}

/* BUTTON */

.download-btn{
  display:flex;
  align-items:center;
  justify-content:center;

  width:100%;

  padding:15px 18px;

  border-radius:18px;

  background:linear-gradient(
    135deg,
    var(--b1),
    var(--b2)
  );

  color:#fff;

  text-decoration:none;

  font-weight:700;

  transition:.3s;
}

.download-btn:hover{
  transform:translateY(-2px);

  box-shadow:
    0 12px 30px rgba(37,99,235,.20);
}

/* RESPONSIVE */

@media (max-width:980px){

  .pdf-grid{
    grid-template-columns:1fr;
  }

  .page-title h1{
    font-size:3.3rem;
  }

}

@media (max-width:700px){

  .page-shell{
    padding:50px 18px 70px;
  }

  .page-title h1{
    font-size:2.7rem;
  }

  .pdf-card{
    padding:26px;
  }

}
    
/* =========== HISTORIA CLÍNICA ============== */

.historia-section{
  position:relative;
  overflow:hidden;

  max-width:1180px;
  margin:0 auto;

  padding:90px 24px 110px;
}

/* FONDOS */

.bg-circle{
  position:absolute;
  border-radius:50%;
  filter:blur(40px);
  z-index:-1;
}

.bg-circle-1{
  width:420px;
  height:420px;

  background:rgba(74,157,223,.10);

  top:120px;
  left:-180px;
}

.bg-circle-2{
  width:320px;
  height:320px;

  background:rgba(47,95,166,.08);

  right:-120px;
  bottom:80px;
}

/* HEADER */

.historia-header{
  text-align:center;
  margin-bottom:70px;
}

.hero-icon{
  width:120px;
  height:120px;
  margin:0 auto 26px;
  border-radius:32px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:0 20px 50px rgba(47,95,166,.10);
}

.hero-icon img{
  width:68px;
  height:68px;
  object-fit:contain;
}

.historia-header h1{
  font-size:clamp(42px,5vw,58px);
  line-height:1;

  color:var(--b1);

  margin:14px 0 22px;

  font-family:'Raleway',sans-serif;
  font-weight:800;
}

.header-text{
  max-width:760px;

  margin:0 auto;

  color:var(--gray);

  font-size:18px;
  line-height:1.9;
}

/* GRID */

.historia-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;

  align-items:start;
}

/* CARDS */

.historia-card{
  background:#fff;

  border-radius:34px;

  padding:42px;

  border:1px solid rgba(47,95,166,.08);

  box-shadow:0 24px 60px rgba(47,95,166,.08);

  position:relative;
}

/* PRINCIPAL */

.card-tag{
  display:inline-flex;
  align-items:center;

  padding:10px 18px;

  border-radius:999px;

  background:rgba(74,157,223,.12);

  color:var(--b1);

  font-size:14px;
  font-weight:700;

  margin-bottom:28px;
}

.principal-card h2{
  font-size:clamp(28px,4vw,38px);
  line-height:1.02;
  color:var(--b1);
  margin-bottom:24px;

  font-family:'Raleway',sans-serif;
  font-weight:800;
}

.principal-card p{
  font-size:16px;
  line-height:1.9;
  
  color:var(--gray);

  margin-bottom:36px;
}

/* BOTÓN */

.solicitud-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;

  width:100%;
  min-height:68px;

  padding:18px 24px;

  border-radius:20px;

  background:linear-gradient(135deg,#2f5fa6,#4798d0);

  color:#fff;
  text-decoration:none;

  font-weight:700;
  font-size:17px;

  transition:.3s ease;

  box-shadow:0 18px 35px rgba(47,95,166,.24);
}

.solicitud-btn:hover{
  transform:translateY(-3px);

  box-shadow:0 24px 50px rgba(47,95,166,.30);
}

.solicitud-btn img{
  width:20px;
  height:20px;
  object-fit:contain;
}

/* SEGURIDAD */

.security-note{
  margin-top:28px;

  display:flex;
  align-items:flex-start;
  gap:14px;

  padding:18px;

  border-radius:18px;

  background:#f8fbff;
  border:1px solid rgba(47,95,166,.06);
}

.security-note img{
  width:22px;
  height:22px;

  object-fit:contain;

  flex-shrink:0;

  margin-top:2px;
}

.security-note span{
  color:var(--gray);
  line-height:1.7;
  font-size:14px;
}

/* DERECHA */

.docs-card h3{
  font-size:32px;

  color:var(--b1);

  margin-bottom:30px;

  font-family:'Raleway',sans-serif;
}

/* LISTA */

.docs-list{
  list-style:none;

  margin:0 0 34px;
  padding:0;

  display:grid;
  gap:18px;
}

.docs-list li{
  display:flex;
  align-items:center;
  gap:14px;

  color:var(--gray);

  font-size:16px;
  line-height:1.7;
}

.docs-list li img{
  width:22px;
  height:22px;

  object-fit:contain;

  flex-shrink:0;
}

/* PDF */

.pdf-box{
  padding:28px;
  border-radius:28px;
  background:#f7fbff;
  border:1px solid rgba(47,95,166,.08);
  margin-bottom:22px;
}

.pdf-top{
  display:flex;
  gap:18px;

  align-items:flex-start;

  margin-bottom:24px;
}

.pdf-icon{
  width:64px;
  height:64px;

  border-radius:18px;

  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;
}

.pdf-icon img{
  width:34px;
  height:34px;
  object-fit:contain;
}

.pdf-box strong{
  display:block;
  font-size:16px;
  color:var(--b1);

  margin-bottom:10px;
}

.pdf-box p{
  color:var(--gray);
  line-height:1.8;
}

.pdf-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  min-height:52px;

  padding:14px 22px;

  border-radius:14px;

  background:#fff;

  border:1px solid rgba(47,95,166,.12);

  color:var(--b1);

  text-decoration:none;
  font-weight:700;

  transition:.3s ease;
}

.pdf-btn:hover{
  transform:translateY(-2px);

  background:#eef6ff;
}

.pdf-btn img{
  width:18px;
  height:18px;
}

/* TIEMPO */

.time-box{
  display:flex;
  align-items:flex-start;
  gap:14px;

  padding:20px;

  border-radius:22px;

  background:#fff;

  border:1px dashed rgba(47,95,166,.16);
}

.time-box img{
  width:22px;
  height:22px;

  object-fit:contain;

  flex-shrink:0;

  margin-top:2px;
}

.time-box strong{
  display:block;

  color:var(--b1);

  margin-bottom:6px;
}

.time-box p{
  color:var(--gray);
  line-height:1.7;
  font-size:14px;
}

/* RESPONSIVE */

@media (max-width:920px){

  .historia-grid{
    grid-template-columns:1fr;
  }

}

@media (max-width:640px){

  .historia-section{
    padding:70px 18px 90px;
  }

  .historia-header{
    margin-bottom:50px;
  }

  .hero-icon{
    width:94px;
    height:94px;
  }

  .hero-icon img{
    width:54px;
    height:54px;
  }

  .historia-card{
    padding:30px 24px;
    border-radius:28px;
  }

  .principal-card h2{
    font-size:42px;
  }

  .principal-card p,
  .header-text{
    font-size:16px;
  }

  .docs-card h3{
    font-size:28px;
  }

}
/* HEADER */

.mision-vision-section{
  padding:100px 24px;
  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(15,76,129,0.18),
    transparent
  );
}

/* TEXTO */
.historia-texto{
  max-width:100%;
  padding-right:0;
}

/* SUBTITULO */
.historia-texto span{
  display:inline-block;
  color:#4798d0;
  font-weight:700;
  font-size:25px;
  margin-bottom:20px;
  text-transform:uppercase;
  letter-spacing:3px;
}

/* PARRAFO */
.historia-texto p{
  color:#4b5563;
  font-size:15px;
  line-height:2.1;
  text-align:justify;
}

/* IMAGEN */
.historia-imagen{
  display:flex;
  justify-content:center;
}

.historia-imagen img{
  width:100%;
  max-width:430px;
  height:460px;
  object-fit:cover;
  border-radius:26px;
  box-shadow:
  0 14px 35px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media(max-width:992px){
  .historia-section{
    padding:70px 24px;
  }

  .historia-container{
    grid-template-columns:1fr;
    gap:45px;
  }

  .historia-texto{
    max-width:100%;
    padding-right:0;
  }

  .historia-texto p{
    font-size:16px;
    line-height:1.9;
  }

  .historia-imagen img{
    max-width:100%;
    height:360px;
  }

}

/* MISION VISION*/
.mision-vision-section{
  padding:35px 24px 70px;
  background:#f8fbff;
}

/* HEADER */
.mision-vision-header{
  text-align:center;
  max-width:850px;
  margin:auto auto 45px;
}

.mision-vision-header span{
  color:#49a6df;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
  font-weight:700;
}

.mision-vision-header h2{
  font-family:'Poppins',sans-serif;
  font-size:48px;
  color:#0f4c81;
  margin:18px 0;
}

.mision-vision-header p{
  font-size:16px;
  color:#5e6c84;
  line-height:1.8;
}

/* GRID */
.vision-mision-container{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(340px,1fr));
  gap:24px;
  max-width:1300px;
  margin:auto;
}

/* CARDS */
.mision-card,
.vision-card{

  background:white;
  border-radius:32px;
  padding:40px;
  position:relative;
  overflow:hidden;
  transition:0.35s ease;
  border:1px solid rgba(15,76,129,0.05);
  box-shadow:
  0 12px 35px rgba(15,76,129,0.08);
}

/* LINEA SUPERIOR */
.mision-card::before,
.vision-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:8px;
  background:
  linear-gradient(
    90deg,
    #0f4c81,
    #49a6df
  );
}

/* HOVER */
.mision-card:hover,
.vision-card:hover{
  transform:translateY(-10px);
  box-shadow:
  0 20px 45px rgba(15,76,129,0.15);
}

/* TOP */
.card-top{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:30px;
}

/* NUMERO */
.card-number{
  min-width:78px;
  height:78px;
  border-radius:24px;
  background:
  linear-gradient(
    135deg,
    #0f4c81,
    #49a6df
  );
  
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:800;
  box-shadow:
  0 10px 20px rgba(15,76,129,0.18);
}

/* SUBTITLE */
.card-subtitle{
  color:#49a6df;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1px;
  font-weight:700;
}

/* TITULOS */
.mision-card h3,
.vision-card h3{
  font-family:'Poppins',sans-serif;
  font-size:30px;
  color:#0f4c81;
  margin-top:6px;
}

/* TEXTO */
.mision-card p,
.vision-card p{
  font-size:15px;
  line-height:1.9;
  color:#5e6c84;
}

/* RESPONSIVE */
@media(max-width:768px){
  .mision-vision-header h2{
    font-size:40px;
  }

  .mision-card,
  .vision-card{
    padding:28px;
  }

  .card-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .mision-card h3,
  .vision-card h3{
    font-size:30px;
  }
}

.nosotros-banner{
  position:relative;
  min-height:50vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:50px 24px;
  overflow:hidden;
  background:
  linear-gradient(
    135deg,
    #0b3d66 0%,
    #0f4c81 45%,
    #2f86c7 100%
  );
}

/* OVERLAY */
.overlay{
  position:absolute;
  inset:0;
  background:
  radial-gradient(
    circle at top right,
    rgba(255,255,255,0.12),
    transparent 40%
  );
}

/* CONTENIDO */
.nosotros-content{
  position:relative;
  z-index:2;
  max-width:950px;
}

/* EYEBROW */

.eyebrow-nosotros{
  font-family:'Poppins',sans-serif;
  color:#cde9ff;
  font-size:14px;
  letter-spacing:3px;
  text-transform:uppercase;
  font-weight:700;
  margin-bottom:20px;
}

/* TITULO */
.sec-title-nosotros{
  font-family:'Poppins',sans-serif;
  font-size:58px;
  font-weight:800;
  line-height:1;
  color:white;
  margin-bottom:28px;
  text-shadow:
  0 6px 18px rgba(0,0,0,0.15);
}

/* DESCRIPCION */
.descripcion{
  font-family:'Poppins',sans-serif;
  font-size:20px;
  line-height:1.9;
  color:#eaf6ff;
  font-weight:400;
  max-width:820px;
  margin:auto;
}

/* LINEA */
.divider{
  width:120px;
  height:5px;
  margin:45px auto;
  border-radius:20px;
  background:
  linear-gradient(
    90deg,
    #ffffff,
    #9fd5ff
  );
}

/* SUBTITULO */
.subtitulo{
  font-family:'Poppins',sans-serif;
  font-size:20px;
  color:white;
  font-weight:600;
  letter-spacing:1px;
}

/* RESPONSIVE */
@media(max-width:568px){
  .nosotros-banner{
    min-height:auto;
    padding:70px 20px;
  }
  .sec-title{
    font-size:54px;
  }
  .descripcion{
    font-size:17px;
    line-height:1.7;
  }
  .subtitulo{
    font-size:17px;
  }
}

  .valores-section{
  padding:40px 24px 80px;
  position: relative;
  margin-top: 0%;
  background:
  linear-gradient(
    180deg,
    #f5f9fd,
    #ffffff
  );
}

.valores-section::before{
  content:'';
  width:120px;
  height:4px;
  border-radius:20px;
  background:
  linear-gradient(
    90deg,
    #0f4c81,
    #49a6df
  );

  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
}


/* HEADER */
.valores-header{
  text-align:center;
  max-width:850px;
  margin:auto auto 50px;
}

.valores-header span{
  color:#1b6391;
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:700;
  font-size:14px;
}

.valores-header h2{
  font-family:'Poppins', sans-serif;
  font-size:39px;
  font-weight:800;
  background:
  linear-gradient(
    90deg,
    #0f4c81,
    #45a8e6
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin:18px 0;
  letter-spacing:-2px;
  line-height:1.1;
}

.valores-header p{
  font-size:15px;
  line-height:1.8;
  color:#5e6c84;
}

/* GRID */
.valores-grid{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));
  gap:28px;
  max-width:1300px;
  margin:auto;
   align-items:stretch;
}

/* CARD */
.valor-card{
  position:relative;
  background:rgb(250, 253, 253);
  padding:38px;
  border-radius:30px;
  overflow:hidden;
  transition:0.35s ease;
  box-shadow:
  0 10px 30px rgba(15,76,129,0.08);
  border:1px solid rgba(15,76,129,0.05);
  display:flex;
  flex-direction:column;
  height:100%;
}

/* LINEA SUPERIOR */
.valor-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:7px;
  background:
  linear-gradient(
    90deg,
    #0f4c81,
    #49a6df
  );
}

/* HOVER */
.valor-card:hover{
  transform:translateY(-10px);
  box-shadow:
  0 20px 40px rgba(15,76,129,0.14);
}

/* NUMERO */
.valor-numero{
  width:40px;
  height:40px;
  border-radius:24px;
  background:
  linear-gradient(
    135deg,
    #a7b9c9,
    #49a6df
  );
  color:rgb(236, 243, 247);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:800;
  margin-bottom:28px;
  box-shadow:
  0 10px 20px rgba(15,76,129,0.18);
}

/* TITULO */
.valor-card h3{
  font-size:22px;
  color:#0f4c81;
  margin-bottom:18px;
  font-family:'Poppins',sans-serif;
}

/* TEXTO */
.valor-card p{
  font-size:14px;
  line-height:1.8;
  color:#5e6c84;
  flex-grow:1;
}



/* ══════════════════ LABORATORIO ══════════════════ */

.lab-section{
  padding: 70px 24px;
  background: #f8fbff;
}

.lab-container{
  max-width: 1240px;
  margin: 0 auto;
}

/* HERO */

.lab-hero{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
  margin-left: 5%;
}

.lab-title{
  font-size: 2.5rem;
  line-height: 1.1;
  color: var(--b1);
  margin: 14px 0 20px;
  text-align: center;
}

.lab-sub{
  color: var(--gray);
  line-height: 1.9;
  font-size: 0.9rem;

  margin-bottom: 34px;

  max-width: 620px;
}

.lab-buttons{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.lab-btn-primary,
.lab-btn-secondary{
  padding: 14px 22px;

  border-radius: 16px;

  text-decoration: none;
  font-weight: 600;

  transition: .3s;
}

.lab-btn-primary{
  background: var(--b1);
  color: #fff;

  box-shadow:
    0 10px 30px rgba(37,99,235,.20);
}

.lab-btn-primary:hover{
  transform: translateY(-3px);
}

.lab-btn-secondary{
  border: 1px solid #d9e4f2;
  color: var(--b1);
  background: #fff;
}

.lab-btn-secondary:hover{
  transform: translateY(-3px);
}

.lab-hero-img img{
  width: 90%;
  height: 520px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow:
    0 24px 60px rgba(0,0,0,.10);
}

/* GRID INFO */

.lab-info-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 70px;
}

.lab-card{
  background: #fff;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid #edf2f7;
  box-shadow:
    0 10px 35px rgba(15,23,42,.05);
}

.lab-card h2,
.lab-card-title{
  color: var(--b1);

  margin-bottom: 18px;

  font-size: 1.7rem;
}

.lab-card-text{
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 15px;
}

.lab-list{
  display: grid;
  gap: 14px;

  color: var(--gray);

  line-height: 1.8;

  padding-left: 18px;
} 
/* INFO ITEMS */

.info-items{
  display: grid;
  gap: 18px;
}

.info-item{
  display: flex;
  align-items: flex-start;
  gap: 14px;

  padding: 18px;

  border-radius: 18px;

  background: #f8fbff;

  border: 1px solid #e7eef7;
}

.info-item strong{
  display: block;

  color: var(--b1);

  margin-bottom: 5px;
}

.info-item span{
  color: var(--gray);
  line-height: 1.6;
}

.info-icon{
  width: 46px;
  height: 46px;

  object-fit: contain;

  padding: 10px;

  border-radius: 14px;

  background: rgba(37,99,235,.08);

  flex-shrink: 0;
}

/* TESTS */

.lab-tests{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 80px;
}

.test-card{
  background: #fff;

  border-radius: 28px;

  overflow: hidden;

  box-shadow:
    0 14px 40px rgba(0,0,0,.06);

  transition: .3s;
}

.test-card:hover{
  transform: translateY(-6px);
}

.test-card img{
  width: 100%;
  height: 230px;

  object-fit: cover;
}

.test-content{
  padding: 24px;
}

.test-content h4{
  color: var(--b1);

  margin-bottom: 10px;

  font-size: 1.25rem;
}

.test-content p{
  color: var(--gray);
  line-height: 1.8;
}

/* RECOMENDACIONES */

.recommendations-section{
  margin-top: 30px;
  margin-left: 5%;
  margin-right: 5%;
}

.recommendations-head{
  text-align: center;

  margin-bottom: 46px;
}

.recommendations-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);

  gap: 24px;
}

.reco-card{
  background: #fff;

  padding: 28px;

  border-radius: 26px;

  border: 1px solid #edf2f7;

  box-shadow:
    0 10px 30px rgba(15,23,42,.05);

  transition: .3s;
}

.reco-card:hover{
  transform: translateY(-5px);
}

.reco-card h4{
  color: var(--b1);

  margin-bottom: 18px;

  font-size: 1.15rem;
}

.reco-card ul{
  display: grid;
  gap: 10px;

  padding-left: 18px;

  color: var(--gray);

  line-height: 1.7;
}
.reco-title{
  display:flex;
  align-items:center;
  gap:14px;

  margin-bottom:22px;
}

.reco-title img{
  width:42px;
  height:42px;

  object-fit:contain;

  flex-shrink:0;
}

.reco-title h4{
  color:var(--b1);

  font-size:1.35rem;
  font-weight:700;

  margin:0;
}

/* CARD SERVICIOS */

.lab-services-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;

  min-height:100%;
}

/* TOP */

.lab-card-top{
  display:flex;
  align-items:flex-start;
  gap:18px;

  margin-bottom:30px;
}

.lab-icon-wrap{
  width:72px;
  height:72px;

  border-radius:22px;

  background:rgba(37,99,235,.08);

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;
}

.lab-icon-wrap img{
  width:36px;
  height:36px;
  object-fit:contain;
}

.lab-mini-title{
  color:var(--b1);

  font-size:.7rem;
  font-weight:700;

  text-transform:uppercase;
  letter-spacing:.08em;

  margin-bottom:8px;
}

.lab-services-card h2{
  font-size:1.6rem;
  line-height:1.2;

  color:var(--b1);
}

/* LISTA */

.services-list{
  display:grid;
  gap:18px;

  margin-bottom:34px;
}

.service-item{
  display:flex;
  align-items:flex-start;
  gap:14px;

  padding:16px 18px;

  border-radius:18px;

  background:#f8fbff;

  border:1px solid #e6eef7;

  transition:.3s;
}

.service-item:hover{
  transform:translateX(4px);

  background:#fff;
}

.service-dot{
  width:11px;
  height:11px;
  border-radius:50%;
  background:var(--b1);
  margin-top:9px;
  flex-shrink:0;
}

.service-item p{
  color:var(--gray);

  line-height:1.7;
}

/* BOTTOM */

.lab-card-bottom{
  display:flex;
  gap:18px;

  margin-top:auto;
}

.mini-stat{
  flex:1;

  padding:18px;

  border-radius:20px;

  background:linear-gradient(
    135deg,
    rgba(37,99,235,.08),
    rgba(71,152,208,.04)
  );

  border:1px solid rgba(37,99,235,.08);
}

.mini-stat strong{
  display:block;

  color:var(--b1);

  font-size:1.5rem;

  margin-bottom:6px;
}

.mini-stat span{
  color:var(--gray);

  font-size:.95rem;
}
/* CARD HORARIOS */

.lab-hours-card{
  display:flex;
  flex-direction:column;

  justify-content:space-between;

  min-height:100%;
}

/* TOP */

.hours-top{
  display:flex;
  align-items:flex-start;
  gap:18px;

  margin-bottom:24px;
}

.hours-icon-wrap{
  width:72px;
  height:72px;

  border-radius:22px;

  background:rgba(37,99,235,.08);

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;
}

.hours-icon-wrap img{
  width:34px;
  height:34px;

  object-fit:contain;
}

.lab-hours-title{
  font-size:1.5rem;

  color:var(--b1);

  line-height:1.2;
}

/* ITEMS */

.info-items{
  display:grid;
  gap:18px;

  margin-top:30px;
}

.info-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:18px;
  border-radius:20px;
  background:#f8fbff;
  border:1px solid #e6eef7;
  transition:.3s;
}

.info-item:hover{
  transform:translateX(5px);
  background:#fff;
}

.info-icon-wrap{
  width:72px;
  height:72px;

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;
}

.info-icon{
  width:72px;
  height:72px;

  object-fit:contain;

  display:block;
}

/* RESPONSIVE */

@media (max-width: 980px){

  .lab-hero{
    grid-template-columns: 1fr;
  }

  .lab-title{
    font-size: 2.5rem;
  }

  .lab-info-grid{
    grid-template-columns: 1fr;
  }

  .lab-tests{
    grid-template-columns: 1fr;
  }

  .recommendations-grid{
    grid-template-columns: 1fr;
  }

  .lab-hero-img img{
    height: 380px;
  }

}
/* RESPONSIVE */
@media(max-width:768px){
  .valores-header h2{
    font-size:38px;
  }
  .valor-card{
    padding:28px;
  }
  .valor-card h3{
    font-size:24px;
  }
}

/*PAQUETE MAMA*/

/* ══════════ PAQUETE MAMA ══════════ */

.pm-hero{

  padding:90px 24px 80px;

  background:
  radial-gradient(
    circle at top right,
    rgba(71,152,208,.12),
    transparent 30%
  ),

  linear-gradient(
    to bottom,
    #ffffff,
    #f7fbff
  );
}


/* ═════════ CONTENEDOR ═════════ */

.pm-container{

  max-width:1200px;

  margin:auto;

  width:100%;
}


/* ═════════ TITULOS ═════════ */

.pm-eyebrow{

  text-align:center;
  color:var(--b2);
  font-weight:700;
  letter-spacing:2px;
  margin-bottom:14px;
  text-transform:uppercase;
}


.pm-title{

  font-size:clamp(2.2rem,5vw,3.6rem);
  line-height:1.1;
  font-weight:800;
  color:var(--b1);
  text-align:center;
  margin-bottom:20px;
}


.pm-subtitle{

  max-width:850px;
  margin:auto;
  text-align:center;
  font-size:1rem;
  line-height:1.9;
  color:#667085;
}


/* ═════════ IMAGEN HERO ═════════ */

.pm-hero-img{

  width:100%;

  max-width:950px;

  height:420px;

  object-fit:cover;

  display:block;

  margin:50px auto;

  border-radius:32px;

  box-shadow:
  0 30px 70px rgba(0,0,0,.12);
}


/* ═════════ GRID ═════════ */

.pm-grid{

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:start;
}


/* ═════════ CARDS ═════════ */

.pm-card{

  background:#fff;
  border-radius:30px;
  padding:38px;
  border:1px solid rgba(71,152,208,.08);
  box-shadow:
  0 14px 50px rgba(0,0,0,.06);
}


.pm-main-card{

  background:
  linear-gradient(
    to bottom,
    #ffffff,
    #f9fbff
  );
}


/* ═════════ TITULOS CARDS ═════════ */

.pm-main-card h2,
.pm-benefit-title{

  color:var(--b1);
  font-size:1.5rem;
  margin-bottom:24px;
  font-weight:700;
}


/* ═════════ LISTA ═════════ */

.pm-main-card ul{

  padding-left:22px;
}


.pm-main-card li{

  margin-bottom:18px;
  line-height:1.9;
  color:#5b6472;
  font-size:0.9rem;
}


/* ═════════ BENEFICIOS ═════════ */

.pm-info-items{

  display:grid;
  gap:18px;
}


.pm-info-item{

  display:flex;
  gap:18px;
  align-items:flex-start;
  padding:20px;
  border-radius:22px;
  background:#f8fbff;
  border:1px solid rgba(71,152,208,.12);
  transition:.3s ease;
}


.pm-info-item:hover{

  transform:translateY(-4px);

  box-shadow:
  0 14px 35px rgba(71,152,208,.12);
}


.pm-info-item strong{

  display:block;
  margin-bottom:8px;
  color:var(--b1);
  font-size:0.9rem;
}


.pm-info-item span{

  color:#667085;
  line-height:1.7;
  font-size:.90rem;
}


/* ═════════ ICONOS ═════════ */

.pm-icon{

  width:58px;
  height:58px;
  padding:12px;
  border-radius:18px;
  background:white;
  object-fit:contain;
  flex-shrink:0;
  box-shadow:
  0 10px 24px rgba(71,152,208,.12);
}


/* ═════════ PREPARACION ═════════ */

.pm-prep-box{

  margin-top:55px;
  padding:40px;
  border-radius:30px;
  background:
  linear-gradient(
    135deg,
    rgba(71,152,208,.08),
    rgba(255,255,255,.95)
  );

  border:1px solid rgba(71,152,208,.10);
  box-shadow:
  0 14px 40px rgba(0,0,0,.06);
}


/* TITULO */

.pm-prep-box h3{

  font-size:1.8rem;
  color:var(--b1);
  margin-bottom:24px;
  text-align:center;
  font-weight:700;
}


/* LISTA */

.pm-prep-list{

  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
}


/* ITEMS */

.pm-prep-list li{

  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px 18px;
  border-radius:18px;
  background:#ffffff;
  border:1px solid rgba(71,152,208,.10);
  color:#5b6472;
  line-height:1.7;
  font-size:0.9rem;
  transition:.3s ease;
}


/* HOVER */

.pm-prep-list li:hover{

  transform:translateX(4px);
  box-shadow:
  0 10px 24px rgba(71,152,208,.10);
}


/* ICONO CHECK */

.pm-prep-list li::before{

  content:"✓";
  min-width:30px;
  height:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--b1);
  color:white;
  font-size:.8rem;
  font-weight:700;
  flex-shrink:0;
  margin-top:2px;
  box-shadow:
  0 8px 18px rgba(71,152,208,.18);
}

/* ═════════ RESPONSIVE ═════════ */

@media(max-width:950px){

  .pm-grid{

    grid-template-columns:1fr;
  }

  .pm-card{

    padding:28px;
  }

  .pm-hero-img{

    height:300px;
  }

}


@media(max-width:700px){

  .pm-hero{

    padding:70px 18px;
  }

  .pm-title{

    font-size:2.4rem;
  }

  .pm-subtitle{

    font-size:1rem;
  }

  .pm-hero-img{

    height:240px;

    border-radius:24px;
  }

  .pm-card{

    padding:24px;
  }

  .pm-prep-box{

    padding:28px 22px;
  }

}
/* IMAGENES DIAGNOSTICAS*/
.img-mini-icon{
  width:34px;
  height:34px;

  object-fit:contain;

  flex-shrink:0;

  align-self:center;
}

/* ============= GINECOLOGÍA ============== */

.gine-section{
  padding:70px 24px 100px;

  background:
  linear-gradient(to bottom,#f7fbff 0%,#ffffff 100%);
}

.gine-wrapper{
  max-width:1240px;
  margin:0 auto;
}

.Historiaclinica-bg{
  position: absolute;
  top: -150px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: rgba(43,124,186,0.08);
  border-radius: 50%;
  filter: blur(10px);
}


/* HEADER */

.gine-header{
  text-align:center;
  margin-bottom:60px;
}

.gine-header h1{
  font-size:clamp(42px,5vw,52px);
  line-height:1.02;
  color:var(--b1);
  margin:12px 0 20px;
  font-family:'Raleway',sans-serif;
  font-weight:800;
}

.gine-sub{
  max-width:760px;
  margin:0 auto;
  color:var(--gray);
  font-size:15px;
  line-height:1.9;
}

/* HERO */

.gine-hero{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;

  background:#fff;

  border-radius:38px;
  padding:60px;

  margin-bottom:42px;

  position:relative;
  overflow:hidden;

  border:1px solid rgba(71,152,208,.08);

  box-shadow:
    0 12px 35px rgba(41,84,143,.07),
    0 18px 45px rgba(71,152,208,.05);

  transition:all .35s ease;
}

/* EFECTO DE PROFUNDIDAD */
.gine-hero::before{
  content:'';

  position:absolute;

  width:420px;
  height:420px;

  background:
    radial-gradient(
      circle,
      rgba(71,152,208,.14) 0%,
      rgba(71,152,208,.06) 35%,
      transparent 72%
    );

  top:-180px;
  right:-140px;

  border-radius:50%;

  filter:blur(10px);

  z-index:0;
}

/* CONTENIDO POR ENCIMA DEL EFECTO */
.gine-hero > *{
  position:relative;
  z-index:2;
}

/* HOVER SUAVE */
.gine-hero:hover{
  transform:translateY(-4px);

  box-shadow:
    0 18px 45px rgba(41,84,143,.10),
    0 30px 70px rgba(71,152,208,.08);
}

.gine-hero img{
  width:100%;
  border-radius:30px;

  box-shadow:
    0 18px 45px rgba(0,0,0,.10);

  transition:all .35s ease;
}

.gine-hero:hover img{
  transform:translateY(-6px);
}

.hero-badge{
  display:inline-flex;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(71,152,208,.10);
  color:var(--b1);
  font-size:13px;
  font-weight:700;
  margin-bottom:24px;
}

.gine-hero-content h2{
  font-size:clamp(38px,4vw,40px);
  line-height:1.05;
  color:var(--b1);
  margin-bottom:19px;
  font-family:'Raleway',sans-serif;
}

.gine-hero-content p{
  color:var(--gray);
  font-size:15px;
  line-height:1.9;
  margin-bottom:30px;
  max-width:580px;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:18px 30px;
  border-radius:18px;
  background:
  linear-gradient(135deg,var(--b1),var(--b2));
  color:#fff;
  text-decoration:none;
  font-weight:700;
  box-shadow:
  0 18px 34px rgba(71,152,208,.28);

  transition:.3s ease;
}

.hero-btn:hover{
  transform:translateY(-3px);
}

.gine-hero-image{
  display:flex;
  justify-content:center;
}

.gine-hero-image img{
  width:100%;
  max-width:440px;

  object-fit:contain;
}

/* BENEFICIOS */

.benefits-section{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;

  margin-bottom:42px;
}

.benefit-card{
  background:#fff;
  border-radius:28px;
  padding:30px;
  border:1px solid rgba(71,152,208,.08);
  box-shadow:
  0 16px 40px rgba(41,84,143,.05);
  transition:.3s ease;
}

.benefit-card:hover{
  transform:translateY(-5px);
  border: 1px solid var(--b1);
}

.benefit-icon{
  width:46px;
  height:46px;

  object-fit:contain;

  margin-bottom:20px;
}

.benefit-card h3{
  font-size:22px;
  color:var(--b1);

  margin-bottom:14px;
}

.benefit-card p{
  color:var(--gray);
  line-height:1.8;
  font-size: 15px;
}

/* INFO GRID */

.gine-info-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  margin-bottom:42px;
}

.info-big-card,
.info-small-card{
  background:#fff;
  border-radius:30px;
  padding:38px;
  border:1px solid rgba(71,152,208,.08);
  box-shadow:
  0 18px 50px rgba(41,84,143,.05);
}

.card-top{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:24px;
}

.card-top img{
  width:38px;
  height:38px;

  object-fit:contain;
}

.card-top h3{
  margin:0;
  color:var(--b1);
  font-size:30px;
}

.gine-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:16px;
}

.gine-list li{
  position:relative;
  padding-left:28px;
  color:var(--gray);
  line-height:1.8;
  font-size: 15px;
}

.gine-list li::before{
  content:'';

  width:10px;
  height:10px;

  border-radius:50%;

  background:var(--b2);

  position:absolute;

  left:0;
  top:10px;
}

/* CTA */

.gine-cta{
  background:
  linear-gradient(135deg,var(--b1),#4676c9);
  border-radius:34px;
  padding:46px;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  box-shadow:
  0 24px 60px rgba(41,84,143,.18);
}

.cta-mini{
  opacity:.8;
  margin-bottom:10px;
  font-weight:600;
  letter-spacing:.5px;
}

.gine-cta h2{
  font-size:28px;
  margin-bottom:14px;
  line-height:1.1;
}

.gine-cta p{
  line-height:1.8;
  max-width:620px;
  font-size: 15px;
}

.cta-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:18px;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:18px 30px;
  border-radius:18px;
  background:#fff;
  color:var(--b1);
  text-decoration:none;
  font-weight:700;
  transition:.3s ease;
}
.cta-btn:hover{
  transform:translateY(-3px);
}
.cta-phone{
  display:flex;
  align-items:center;
  gap:12px;
}
.cta-phone img{
  width:24px;
  height:24px;
}
.cta-phone span{
  font-weight:700;
}

/* RESPONSIVE */
@media (max-width:980px){
  .gine-hero,
  .benefits-section,
  .gine-info-grid,
  .gine-cta{
    grid-template-columns:1fr;
  }
  .benefits-section{
    display:grid;
  }
  .gine-cta{
    flex-direction:column;
    align-items:flex-start;
  }
  .cta-actions{
    align-items:flex-start;
  }

}

@media (max-width:680px){
  .gine-section{
    padding:50px 18px 80px;
  }
  .gine-hero,
  .benefit-card,
  .info-big-card,
  .info-small-card,
  .gine-cta{
    padding:30px;
    border-radius:28px;
  }
  .gine-header h1{
    font-size:42px;
  }
  .gine-hero-content h2{
    font-size:38px;
  }
  .card-top h3{
    font-size:26px;
  }
  .gine-cta h2{
    font-size:34px;
  }

}
 /* ======== CONVENIOS ======== */
 .eps-section{
  padding:100px 24px;
  margin-top:30px;
  border-top-left-radius:60px;
  border-top-right-radius:60px;
  background:
  linear-gradient(
    to bottom,
    #f8fbff,
    #eef6fc
  );
}

.eps-container{
  max-width:1280px;
  margin:auto;
}

/* TITULOS */
.eps-subtitle{
  max-width:760px;
  margin:auto;
  text-align:center;
  color:#667085;
  line-height:1.8;
  font-size:1.05rem;
  margin-bottom:70px;
}

/* GRID */
.eps-grid{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}

/* CARD */
.eps-card{
  background:#fff;
  border-radius:30px;
  padding:38px 30px;
  text-align:center;
  border:1px solid rgba(71,152,208,.08);
  box-shadow:
  0 14px 40px rgba(0,0,0,.05);
  transition:.35s ease;
}


.eps-card:hover{
  transform:translateY(-8px);
  box-shadow:
  0 20px 50px rgba(154, 189, 215, 0.14);
  border: 1px solid var(--b3);
}


/* LOGO */
.eps-logo{
  width:82px;
  height:82px;
  object-fit:contain;
  margin-bottom:24px;
}

/* TITULO CARD */
.eps-card h3{
  color:var(--b1);
  font-size:1.3rem;
  margin-bottom:20px;
  font-family:Raleway, sans-serif;
  font-style: italic;
}


/* LISTA */
.eps-card ul{
  list-style:none;
  padding:0;
  margin:0 0 24px;
  display:grid;
  gap:10px;
}

.eps-card li{
  padding:10px 14px;
  border-radius:14px;
  background:#f2f3f4;
  color:#4c4f54;
  font-size:.96rem;
}

/* BADGE */
.eps-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 20px;
  margin-top:8px;
  border-radius:999px;
  background:
  linear-gradient(
    to right,
    rgba(71,152,208,.14),
    rgba(91,182,230,.10)
  );
  color:var(--b1);
  font-size:.85rem;
  font-weight:700;
  letter-spacing:.3px;
  border:1px solid rgba(71,152,208,.16);
  box-shadow:
  0 8px 18px rgba(71,152,208,.10);
}

/* RESPONSIVE */

@media(max-width:768px){

  .eps-section{

    padding:80px 18px;
  }

  .eps-subtitle{

    margin-bottom:50px;
  }

}


/*CONSULTA MEDICA*/

/* =========================
   BASE PREMIUM (FONDO LIMPIO)
========================= */

body{
  background: #f6f9fc;
  color: #1f2937;
}

/* =========================
   SECCIONES
========================= */

.consultamedica-hero,
.consultamedica-servicios,
.consultamedica-pasos{
  padding: 60px 6%;
}

/* =========================
   HERO PREMIUM
========================= */

.consultamedica-hero{
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.consultamedica-contenido{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* imagen estilo premium */
.pm-hero-img{
  width: 100%;
  max-width: 520px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

/* títulos más elegantes */
.consultamedica-titulo{
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #0f2f5f;
  font-weight: 700;
}

.consultamedica-titulo em{
  color: #2f5fa6;
  font-style: normal;
}

.consultamedica-descripcion{
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5b677a;
  margin-bottom: 22px;
}

/* botón premium */
.consultamedica-boton-wsp{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #22c55e;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: .25s ease;
  box-shadow: 0 10px 25px rgba(34,197,94,.25);
}

.consultamedica-boton-wsp:hover{
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(34,197,94,.35);
}

/* =========================
   BOTÓN REGRESAR PREMIUM
========================= */

.btn-regresar-rutas{
  position: absolute;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f2f5f;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}



.consultamedica-servicios{
  background: #f6f9fc;
}

.consultamedica-seccion-titulo{
  text-align: center;
  font-size: 2rem;
  color: #0f2f5f;
  margin-bottom: 6px;
}

.consultamedica-seccion-subtitulo{
  text-align: center;
  color: #6b7a90;
  margin-bottom: 35px;
}

.consultamedica-servicios-grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 18px;
}


.consultamedica-servicio-card{
  background: #ffffff;
  border: 1px solid rgba(15, 47, 95, 0.08);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: .25s ease;
  box-shadow: 0 8px 20px rgba(15,23,42,.04);
}

.consultamedica-servicio-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,23,42,.10);
}

/* icono premium */
.consultamedica-servicio-icono{
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 14px;
  background: #f1f6ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consultamedica-servicio-icono img{
  width: 80%;
  height: 80%;
  object-fit: contain;
}


.consultamedica-servicio-nombre{
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f2f5f;
}

.consultamedica-servicio-detalle{
  font-size: .92rem;
  color: #5b677a;
  line-height: 1.5;
}


.consultamedica-pasos{
  background: #f6f9fc;
}

.consultamedica-pasos-titulo{
  text-align: center;
  font-size: 2rem;
  color: #0f2f5f;
  margin-bottom: 30px;
  font-weight: 700;
}

.consultamedica-pasos-lista{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}


.consultamedica-paso{
  background: #ffffff;
  border: 1px solid rgba(15,47,95,0.06);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15,23,42,.04);
  transition: .25s ease;
}

.consultamedica-paso:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,23,42,.10);
}

/* número premium */
.consultamedica-paso-numero{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #2f5fa6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 12px;
}

/* texto */
.consultamedica-paso-texto{
  font-size: .92rem;
  line-height: 1.6;
  color: #5b677a;
}

.consultamedica-paso-texto strong{
  display: block;
  color: #0f2f5f;
  margin-bottom: 6px;
}

/* =========================
   RESPONSIVE PREMIUM
========================= */

@media (max-width: 900px){

  .consultamedica-contenido{
    flex-direction: column;
    text-align: center;
  }

  .consultamedica-pasos-lista{
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 576px){

  .consultamedica-pasos-lista{
    grid-template-columns: 1fr;
  }

}

/*SECCIÓN SEDES*/
.sedes-servicios{
  padding:100px 8%;
  background:#f5f9ff;
}

.sedes-title{
  text-align:center;
  max-width:750px;
  margin:auto;
  margin-bottom:60px;
}

.sedes-title h2{
  font-size:3rem;
  color:#0c296b;
  margin:15px 0;
}

.sedes-title p{
  color:#1f529b;
  line-height:1.8;
}

/* GRID */
.sedes-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
  gap:35px;
}

/*CARD SEDE*/

.sede-card{
  position:relative;
  height:420px; /* ambas cards mismo tamaño */
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  transition:.4s ease;
}
.sede-card:hover{
  transform:translateY(-8px);
}

/* IMAGEN */
.sede-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease, filter .4s ease;
}

/* efecto hover elegante */
.sede-card:hover img{
  transform:scale(1.06);
}

/* OVERLAY MÁS SUAVE */

.sede-overlay{
  position:absolute;
  inset:0;

  background:linear-gradient(
    to top,
    rgba(0,0,0,.55),
    rgba(0,0,0,.12),
    rgba(0,0,0,.02)
  );
}

/* CONTENIDO */
.sede-content{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:32px;
  color:#fff;
  z-index:2;
}

/* TAG */
.sede-tag{
  display:inline-block;
  background:#0b63ce;
  padding:10px 20px;
  border-radius:50px;
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.5px;
  margin-bottom:18px;
}

/* TITULO */
.sede-content h3{
  font-size:2rem;
  font-weight:700;
  margin-bottom:14px;
  line-height:1.2;
}

/* TEXTO */
.sede-content p{
  font-size:1rem;
  color:#f1f5f9;
  line-height:1.7;
  margin-bottom:28px;
  max-width:90%;
}

/* BOTÓN */
.btn-sede{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  background:#fff;
  color:#0b63ce;
  padding:16px 28px;
  border-radius:16px;
  text-decoration:none;
  font-weight:700;
  font-size:1rem;
  transition:.3s ease;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

/* ICONO BOTÓN */
.btn-sede i{
  font-size:1.1rem;
}

/* HOVER BOTÓN */

.btn-sede:hover{
  background:#0b63ce;
  color:#fff;
  transform:translateY(-2px);
}

/*RESPONSIVE*/

@media(max-width:768px){

  .sede-card{
    height:360px;
  }

  .sede-content{
    padding:24px;
  }

  .sede-content h3{
    font-size:1.6rem;
  }

  .sede-content p{
    font-size:.92rem;
    max-width:100%;
  }

  .btn-sede{
    width:100%;
    padding:15px 20px;
    font-size:.95rem;
  }

}
/* RESPONSIVE */

@media(max-width:768px){

  .sedes-servicios{
    padding:70px 6%;
  }

  .sedes-title h2{
    font-size:2rem;
    line-height:1.2;
  }

  .sedes-title p{
    font-size:.95rem;
  }

}

.diag-page {
  position: relative;
  padding: 42px 24px 58px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.diag-content {
  max-width: 1040px;
  margin: 0 auto;
}

.diag-title {
  max-width: 760px;
  margin-bottom: 10px;
}

.diag-intro {
  max-width: 760px;
  margin: 0 0 24px;
  text-align: left;
}

.diag-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, .75fr);
  gap: 18px;
  align-items: start;
}

.diag-services,
.diag-benefits {
  border: 1px solid rgba(47, 95, 166, .1);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 47, 95, .07);
}

.diag-services {
  padding: 24px;
  background: #f1f7fb;
  border-top: 4px solid var(--b2);
}

.diag-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.diag-count {
  flex-shrink: 0;
  padding: 7px 11px;
  border: 1px solid rgba(47, 95, 166, .14);
  border-radius: 999px;
  background: #fff;
  color: var(--b1);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.diag-helper {
  max-width: 610px;
  margin: 10px 0 0;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.55;
}

.diag-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--b2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.diag-section-title,
.diag-benefits-title {
  margin: 0;
  color: var(--b1);
  font-size: 23px;
  line-height: 1.25;
}

.diag-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.diag-list li {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 48px;
  padding: 9px 10px 9px 28px;
  background: #ffffff;
  border: 1px solid rgba(47, 95, 166, .08);
  border-radius: 10px;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.45;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.diag-list li::before {
  position: absolute;
  top: 15px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--b2);
  content: "";
}

.diag-list li:hover {
  border-color: rgba(71, 152, 208, .38);
  box-shadow: 0 8px 18px rgba(15, 47, 95, .06);
  transform: translateY(-2px);
}

.diag-list strong {
  color: var(--b1);
  font-size: 13px;
  line-height: 1.25;
}

.diag-other-services {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(47, 95, 166, .14);
  color: var(--gray);
  font-size: 13px;
  line-height: 1.55;
}

.diag-other-services strong {
  color: var(--b1);
  font-size: 14px;
}

.diag-benefits {
  padding: 24px;
  background: #ffffff;
  position: sticky;
  top: 94px;
}

.diag-benefits-title {
  margin-bottom: 14px;
}

.diag-info-items {
  display: grid;
  gap: 8px;
  margin-top: 0;
}

.diag-info-items .info-item {
  padding: 12px;
  border-radius: 12px;
  background: #f7fafc;
}

.diag-prep {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(71, 152, 208, .18);
  border-left: 4px solid var(--b2);
  border-radius: 14px;
  background: rgba(71, 152, 208, .08);
}

.diag-prep-icon {
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--b2);
  color: #ffffff;
  font-weight: 800;
}

.diag-prep h3 {
  margin: 0 0 7px;
  color: var(--b1);
  font-size: 17px;
}

.diag-prep p {
  margin: 0;
  color: var(--gray);
  line-height: 1.65;
}

@media (max-width: 760px) {
  .diag-page {
    padding: 34px 18px 48px;
  }

  .diag-grid {
    grid-template-columns: 1fr;
  }

  .diag-services,
  .diag-benefits {
    padding: 20px 16px;
  }

  .diag-benefits {
    position: static;
  }

  .diag-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .diag-heading-row {
    display: block;
  }

  .diag-count {
    display: inline-block;
    margin-top: 12px;
  }

  .diag-list li {
    padding-right: 10px;
    padding-left: 30px;
  }

  .diag-prep {
    padding: 18px;
  }
}

/* ─── IMAGENES DIAGNOSTICAS: REDISENO ─── */
.diag-page {
  position: relative;
  padding: 30px 24px 64px;
  background: #f4f8fb;
}

.diag-content {
  max-width: 1120px;
}

.diag-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: end;
  gap: 28px;
  min-height: 260px;
  margin-bottom: 22px;
  padding: 28px 34px 30px;
  overflow: hidden;
  border-radius: 6px;
  background: #0d3768;
  box-shadow: 0 18px 36px rgba(13, 55, 104, .16);
}

.diag-hero::before,
.diag-hero::after {
  position: absolute;
  border: 1px solid rgba(126, 218, 246, .24);
  border-radius: 50%;
  content: "";
}

.diag-hero::before {
  width: 370px;
  height: 370px;
  right: -100px;
  bottom: -250px;
}

.diag-hero::after {
  width: 230px;
  height: 230px;
  right: -28px;
  bottom: -160px;
}

.diag-hero-copy,
.diag-hero-mark,
.diag-back {
  position: relative;
  z-index: 1;
}

.diag-back {
  position: absolute;
  top: 20px;
  left: 34px;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  text-decoration: none;
  transition: color .2s ease;
}

.diag-back:hover {
  color: #fff;
}

.diag-hero .eyebrow {
  margin: 28px 0 12px;
  color: #8ddcf4;
}

.diag-title {
  max-width: 620px;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.diag-intro {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
}

.diag-hero-mark {
  display: grid;
  align-content: center;
  justify-items: center;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(141, 220, 244, .45);
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

.diag-hero-mark span {
  font-family: 'Raleway', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.diag-hero-mark small {
  margin-top: 8px;
  color: #8ddcf4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
}

.diag-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.diag-services,
.diag-benefits {
  border: 0;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(22, 56, 91, .08);
}

.diag-services {
  padding: 26px;
  background: #fff;
  border-top: 0;
  text-align: center;
}

.diag-heading-row {
  position: relative;
  justify-content: center;
}

.diag-heading-row > div {
  text-align: center;
}

.diag-kicker,
.diag-side-label {
  color: #238cb4;
  font-size: 10px;
  letter-spacing: 1.8px;
}

.diag-section-title,
.diag-benefits-title {
  color: #123e70;
  font-size: 24px;
}

.diag-helper {
  margin: 8px auto 0;
  font-size: 13px;
  text-align: center;
}

.diag-count {
  border: 0;
  background: #e8f5fa;
  color: #16779a;
}

.diag-heading-row .diag-count {
  position: absolute;
  top: 0;
  right: 0;
}

.diag-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 18px;
  text-align: left;
}

.diag-list li {
  min-height: 54px;
  padding: 10px 12px 10px 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e4edf3;
  border-radius: 4px;
  background: #fbfdfe;
}

.diag-list li::before {
  top: 50%;
  width: 6px;
  height: 6px;
  background: #33a7c9;
  transform: translateY(-50%);
}

.diag-list li:hover {
  border-color: #8ed4e7;
  background: #f2fbfd;
  box-shadow: none;
  transform: none;
}

.diag-list strong {
  display: block;
  width: 100%;
  color: #174b7e;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.diag-benefits {
  top: 84px;
  padding: 20px 22px;
  background: #eaf4f8;
}

.diag-side-label {
  display: block;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.diag-benefits-title {
  margin-bottom: 16px;
  font-size: 22px;
  text-align: center;
}

.diag-info-items {
  gap: 7px;
}

.diag-info-items .info-item {
  gap: 11px;
  padding: 12px 10px;
  border: 1px solid rgba(35, 140, 180, .12);
  border-radius: 4px;
  background: rgba(255, 255, 255, .7);
}

.diag-info-items .info-item strong {
  display: block;
  margin-bottom: 3px;
  color: #174b7e;
  font-size: 13px;
}

.diag-info-items .info-item span {
  color: #5b7180;
  font-size: 12px;
  line-height: 1.45;
}

.diag-prep {
  margin-top: 22px;
  border: 0;
  border-radius: 6px;
  background: #ffdca8;
  box-shadow: 0 8px 20px rgba(125, 88, 30, .08);
}

.diag-prep-icon {
  background: #c57b18;
}

.diag-prep h3 {
  color: #704914;
}

.diag-prep p {
  color: #765d3b;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .diag-page {
    padding: 20px 16px 44px;
  }

  .diag-hero {
    display: block;
    min-height: 0;
    padding: 24px 22px 26px;
  }

  .diag-back {
    top: 17px;
    left: 22px;
  }

  .diag-hero .eyebrow {
    margin-top: 34px;
  }

  .diag-hero-mark {
    display: none;
  }

  .diag-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .diag-services,
  .diag-benefits {
    padding: 20px 16px;
  }

  .diag-benefits {
    position: static;
  }
}

@media (max-width: 480px) {
  .diag-heading-row {
    display: block;
  }

  .diag-heading-row .diag-count {
    position: static;
    display: inline-block;
    margin-top: 10px;
  }

  .diag-list {
    grid-template-columns: 1fr;
  }

  .diag-prep {
    padding: 15px;
  }
}

/* GUIA DE PREPARACION PARA RX */
.diag-guide {
  margin-top: 22px;
  padding: 30px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(22, 56, 91, .08);
}

.diag-guide-intro {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.diag-guide-intro .diag-side-label {
  display: block;
  margin-bottom: 8px;
}

.diag-guide-intro h2 {
  margin: 0 0 10px;
  color: #123e70;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
}

.diag-guide-intro p {
  margin: 0;
  color: #5b7180;
  font-size: 14px;
  line-height: 1.65;
}

.diag-guide-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.diag-guide-card {
  position: relative;
  padding: 22px;
  border: 1px solid #e1ebf1;
  border-radius: 5px;
  background: #f8fbfc;
}

.diag-guide-card-featured {
  border-color: #9bd9e8;
  background: #eef9fb;
}

.diag-guide-number {
  display: inline-block;
  margin-bottom: 12px;
  color: #238cb4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.diag-guide-card h3 {
  margin: 0 0 8px;
  color: #174b7e;
  font-family: 'Raleway', sans-serif;
  font-size: 19px;
  line-height: 1.25;
}

.diag-guide-example {
  margin: 0 0 14px;
  color: #5b7180;
  font-size: 12px;
  line-height: 1.5;
}

.diag-guide-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.diag-guide-card li {
  position: relative;
  padding-left: 16px;
  color: #526b7b;
  font-size: 13px;
  line-height: 1.55;
}

.diag-guide-card li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #33a7c9;
  content: '';
}

.diag-guide-card li strong {
  color: #174b7e;
}

.diag-important {
  margin-top: 14px;
  padding: 20px 22px;
  border-left: 4px solid #c57b18;
  border-radius: 4px;
  background: #fff4df;
}

.diag-important h3 {
  margin: 0 0 14px;
  color: #704914;
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
}

.diag-important-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.diag-important-grid div {
  display: grid;
  align-content: start;
  gap: 4px;
}

.diag-important-grid strong {
  color: #704914;
  font-size: 13px;
}

.diag-important-grid span {
  color: #765d3b;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .diag-guide {
    padding: 22px 16px;
  }

  .diag-guide-cards,
  .diag-important-grid {
    grid-template-columns: 1fr;
  }

  .diag-guide-card {
    padding: 18px;
  }
}

/* RESPONSIVE GLOBAL */
@media (max-width: 960px) {
  header {
    height: auto;
    min-height: 60px;
    padding: 10px 20px;
  }

  nav {
    gap: 2px;
  }

  .hero,
  .hero-cancer,
  .hero-banner,
  .hero-cervix-custom,
  .hero-prostata-custom {
    min-height: 420px;
    height: auto;
    padding: 70px 24px 50px;
  }

  .hero-content,
  .hero-cancer-cervix,
  .hero-cancer-prostata,
  .info-text {
    max-width: 100%;
    margin: 0;
  }

  .hero-slider {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: min(100%, 620px);
    max-width: 100%;
    margin: 25px auto 0;
  }

  .hero h1,
  .hero-cancer-cervix h1,
  .info-text h1 {
    font-size: clamp(34px, 7vw, 52px);
  }

  .quick-strip,
  .stats,
  .svc-grid,
  .jornadas-grid,
  .sedes-grid,
  .derechos-grid,
  .reco-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .care-wrap,
  .boletin-wrap,
  .gine-hero,
  .gine-info-grid,
  .lab-hero,
  .team-intro,
  .tamizacion-prostata-grid,
  .servicios-card,
  .services-card,
  .prostata-services-card,
  .recuerda-grid {
    grid-template-columns: 1fr;
  }

  .care-right,
  .lab-hero-img,
  .servicios-img,
  .services-img,
  .prostata-services-img {
    min-height: 260px;
  }

  .care-left,
  .gine-hero,
  .lab-hero,
  .team-intro,
  .recuerda-grid {
    padding: 40px 24px;
  }

  .lab-hero,
  .lab-info-grid,
  .lab-tests,
  .recommendations-section {
    margin-left: 0;
    margin-right: 0;
  }

  .cervix-grid,
  .risk-grid,
  .resumen-grid,
  .symptoms-grid,
  .prevention-cards,
  .prevencion-grid,
  .valores-grid,
  .team-grid,
  .consultamedica-pasos-lista {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-stats {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .esp-grid {
    flex-wrap: wrap;
  }

  .card-doc {
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .sec,
  .consultamedica-hero,
  .consultamedica-servicios,
  .consultamedica-pasos,
  .sedes-servicios,
  .lab-section,
  .gine-section,
  .rutas-moviles,
  .team-wrap,
  .historia-section,
  .pm-hero,
  .eps-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .quick-strip,
  .stats,
  .svc-grid,
  .jornadas-grid,
  .sedes-grid,
  .derechos-grid,
  .reco-row,
  .cervix-grid,
  .risk-grid,
  .resumen-grid,
  .symptoms-grid,
  .prevention-cards,
  .prevencion-grid,
  .valores-grid,
  .team-grid,
  .consultamedica-pasos-lista,
  .services-grid,
  .rutas-moviles .rutas-grid {
    grid-template-columns: 1fr;
  }

  .qs-container {
    display: grid;
    grid-template-columns: 1fr;
  }

  .qs-item {
    min-width: 0;
  }

  .care-stats,
  .lab-buttons,
  .hero-btns,
  .cta-actions {
    width: 100%;
  }

  .care-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .care-card {
    width: min(140px, calc(50% - 10px));
    padding: 24px 12px;
  }

  .care-right {
    min-height: 360px;
  }

  .boletin-wrap,
  .pqrsf-banner {
    display: block;
  }

  .pqrsf-left,
  .pqrsf-content {
    padding: 34px 24px;
  }

  .pqrsf-right {
    min-height: 210px;
  }

  .info-split {
    display: block;
    padding: 40px 18px;
  }

  .factores-card,
  .poblacion-card,
  .compromiso-bloque {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .construction-banner,
  .historia-card,
  .pm-card,
  .lab-card,
  .diag-services,
  .diag-benefits {
    padding: 28px 20px;
  }

  .pm-hero-img,
  .lab-hero-img img,
  .historia-imagen img {
    height: auto;
    max-height: 360px;
  }

  .team-hero h1,
  .sedes-title h2,
  .construction-content h1,
  .consultamedica-titulo {
    font-size: clamp(30px, 9vw, 44px);
  }

  .team-stats {
    gap: 24px;
  }

  .team-track,
  .carousel-track {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .card-doc {
    min-width: min(82vw, 300px);
  }

  .prev,
  .next,
  .carousel-btn.prev,
  .carousel-btn.next {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero,
  .hero-cancer,
  .hero-banner,
  .hero-cervix-custom,
  .hero-prostata-custom {
    min-height: 360px;
    padding: 60px 18px 36px;
  }

  .hero p,
  .hero-cancer-cervix p,
  .hero-cancer-prostata-sub,
  .info-text p {
    font-size: 15px;
  }

  .hero-slider {
    border-radius: 10px;
  }

  .routes,
  .cancer-links {
    grid-template-columns: 1fr;
  }

  .care-card {
    width: 100%;
  }

  .sede-content,
  .gine-cta,
  .team-cta,
  .moviles-band {
    padding: 26px 20px;
  }

  .sede-content h3,
  .gine-cta h2,
  .rutas-moviles .ruta-impacto h2 {
    font-size: 28px;
  }

  .sede-card {
    height: 390px;
  }

  .btn,
  .btn-sede,
  .hero-btn,
  .cta-btn,
  .lab-btn-primary,
  .lab-btn-secondary {
    width: 100%;
  }

  .mv-vans {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mv-main img {
    width: 130px;
  }

  .mv-small img {
    width: 78px;
  }

  .rutas-moviles .ruta-impacto {
    padding: 34px 20px;
  }
}

/* AJUSTE FINAL DE TITULOS EN MOVIL */
@media (max-width: 768px) {
  .hero h1,
  .hero-cancer-cervix h1,
  .hero-cancer-prostata-title,
  .info-text h1,
  .team-hero h1,
  .gine-header h1,
  .pm-title,
  .page-title h1,
  .sec-title-nosotros,
  .rutas-moviles h1,
  .construction-content h1 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.1;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .gine-hero-content h2,
  .principal-card h2,
  .docs-card h3,
  .consultamedica-seccion-titulo,
  .consultamedica-pasos-titulo,
  .sedes-title h2,
  .rutas-moviles .ruta-impacto h2,
  .mision-vision-header h2,
  .valores-header h2,
  .recuerda-content h2,
  .alerta-title,
  .autoexamen-header h2,
  .lab-card h2,
  .lab-card-title {
    font-size: clamp(22px, 6vw, 30px);
    line-height: 1.2;
    letter-spacing: 0;
  }

  .mision-card h3,
  .vision-card h3,
  .valor-card h3,
  .benefit-card h3,
  .sede-content h3,
  .gine-cta h2,
  .mv-text h3,
  .svc-card h3,
  .card-top h3 {
    font-size: clamp(20px, 5vw, 26px);
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  .hero h1,
  .hero-cancer-cervix h1,
  .hero-cancer-prostata-title,
  .info-text h1,
  .team-hero h1,
  .gine-header h1,
  .pm-title,
  .page-title h1,
  .sec-title-nosotros,
  .rutas-moviles h1,
  .construction-content h1 {
    font-size: 30px;
  }

  .hero p,
  .consultamedica-descripcion,
  .descripcion,
  .header-text,
  .gine-sub,
  .pm-subtitle {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* ESCALA TIPOGRAFICA MOVIL */
@media (max-width: 768px) {
  h1,
  .hero h1,
  .page-title h1,
  .team-hero h1,
  .gine-header h1,
  .pm-title,
  .sec-title-nosotros,
  .rutas-moviles h1,
  .construction-content h1 {
    font-size: 32px !important;
    line-height: 1.12;
    letter-spacing: 0;
  }

  h2,
  .gine-hero-content h2,
  .principal-card h2,
  .docs-card h3,
  .lab-card h2,
  .lab-card-title,
  .consultamedica-seccion-titulo,
  .consultamedica-pasos-titulo,
  .sedes-title h2,
  .mision-vision-header h2,
  .valores-header h2,
  .rutas-moviles .ruta-impacto h2 {
    font-size: 26px !important;
    line-height: 1.2;
    letter-spacing: 0;
  }

  h3,
  .mision-card h3,
  .vision-card h3,
  .valor-card h3,
  .benefit-card h3,
  .sede-content h3,
  .gine-cta h2,
  .mv-text h3,
  .svc-card h3,
  .card-top h3,
  .sede-body h4 {
    font-size: 21px !important;
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  h1,
  .hero h1,
  .page-title h1,
  .team-hero h1,
  .gine-header h1,
  .pm-title,
  .sec-title-nosotros,
  .rutas-moviles h1,
  .construction-content h1 {
    font-size: 28px !important;
  }

  h2,
  .gine-hero-content h2,
  .principal-card h2,
  .docs-card h3,
  .lab-card h2,
  .lab-card-title,
  .consultamedica-seccion-titulo,
  .consultamedica-pasos-titulo,
  .sedes-title h2,
  .mision-vision-header h2,
  .valores-header h2,
  .rutas-moviles .ruta-impacto h2 {
    font-size: 23px !important;
  }

  h3,
  .mision-card h3,
  .vision-card h3,
  .valor-card h3,
  .benefit-card h3,
  .sede-content h3,
  .gine-cta h2,
  .mv-text h3,
  .svc-card h3,
  .card-top h3,
  .sede-body h4 {
    font-size: 19px !important;
  }
}
/* =========================================================
   RESPONSIVE EXTRA PARA PANTALLAS PEQUEÑAS
   BIOS IPS
   ========================================================= */

/* ---------------------------------------------------------
   TABLETS PEQUEÑAS / CELULARES GRANDES
   --------------------------------------------------------- */

@media (max-width: 600px) {

    /* Evita desbordamientos */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    img,
    video,
    iframe {
        max-width: 100%;
    }


    /* CONTENEDORES */

    .sec,
    .consultamedica-hero,
    .consultamedica-servicios,
    .consultamedica-pasos,
    .sedes-servicios,
    .lab-section,
    .gine-section,
    .rutas-moviles,
    .team-wrap,
    .historia-section,
    .pm-hero,
    .eps-section {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }


    /* =====================================================
       TARJETAS DE SERVICIOS
       ===================================================== */

    .services-grid,
    .svc-grid {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 18px;
    }


    .service-card,
    .services-card,
    .svc-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin-left: 0;
        margin-right: 0;

        box-sizing: border-box;

        overflow: hidden;
    }


    /* Si la tarjeta utiliza flex */
    .service-card,
    .svc-card {
        flex-wrap: nowrap;
    }


    /* Imágenes dentro de las tarjetas */

    .service-card img,
    .services-card img,
    .svc-card img {
        max-width: 100%;
    }


    /* Contenido */

    .service-card > *,
    .services-card > *,
    .svc-card > * {
        min-width: 0;
        max-width: 100%;
    }


    /* Textos */

    .service-card h2,
    .service-card h3,
    .service-card p,
    .services-card h2,
    .services-card h3,
    .services-card p,
    .svc-card h2,
    .svc-card h3,
    .svc-card p {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }


    /* =====================================================
       TARJETAS CON IMAGEN + CONTENIDO
       ===================================================== */

    .card-top {
        min-width: 0;
        max-width: 100%;
    }

    .card-top img {
        max-width: 100%;
    }


    /* =====================================================
       ESPACIADOS
       ===================================================== */

    .construction-banner,
    .historia-card,
    .pm-card,
    .lab-card,
    .diag-services,
    .diag-benefits {
        width: 100%;
        max-width: 100%;
        padding: 24px 18px;
    }


    /* =====================================================
       BOTONES
       ===================================================== */

    .btn,
    .btn-sede,
    .hero-btn,
    .cta-btn,
    .lab-btn-primary,
    .lab-btn-secondary {
        max-width: 100%;
    }


    /* =====================================================
       HERO
       ===================================================== */

    .hero,
    .hero-cancer,
    .hero-banner,
    .hero-cervix-custom,
    .hero-prostata-custom {
        width: 100%;
        max-width: 100%;
        min-height: 350px;
    }


    /* =====================================================
       IMÁGENES GRANDES
       ===================================================== */

    .pm-hero-img,
    .lab-hero-img,
    .servicios-img,
    .services-img,
    .prostata-services-img {
        width: 100%;
        max-width: 100%;
    }

}


/* =========================================================
   CELULARES PEQUEÑOS
   480px
   ========================================================= */

@media (max-width: 480px) {

    /* CONTENEDORES */

    .sec,
    .consultamedica-hero,
    .consultamedica-servicios,
    .consultamedica-pasos,
    .sedes-servicios,
    .lab-section,
    .gine-section,
    .rutas-moviles,
    .team-wrap,
    .historia-section,
    .pm-hero,
    .eps-section {
        padding-left: 14px;
        padding-right: 14px;
    }


    /* =====================================================
       TARJETAS
       ===================================================== */

    .services-grid,
    .svc-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }


    .service-card,
    .services-card,
    .svc-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }


    /* =====================================================
       TARJETAS PLAN PREMIUM / RUTAS
       ===================================================== */

    .service-card {
        display: flex !important;
        flex-direction: column !important;
    }


    .service-card .card-top {
        width: 100% !important;
        max-width: 100% !important;
    }


    .service-card .card-top img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: cover;
    }


    /* =====================================================
       TEXTO DE LAS TARJETAS
       ===================================================== */

    .service-card h3,
    .svc-card h3,
    .card-top h3 {
        font-size: 19px !important;
        line-height: 1.25;
        overflow-wrap: break-word;
    }


    .service-card p,
    .svc-card p {
        font-size: 14px;
        line-height: 1.6;
        overflow-wrap: break-word;
    }


    /* =====================================================
       IMÁGENES
       ===================================================== */

    img {
        max-width: 100%;
        height: auto;
    }


    /* =====================================================
       HERO
       ===================================================== */

    .hero,
    .hero-cancer,
    .hero-banner,
    .hero-cervix-custom,
    .hero-prostata-custom {
        min-height: 340px;
        padding: 55px 16px 35px;
    }


    /* =====================================================
       SEDES
       ===================================================== */

    .sede-card {
        width: 100%;
        max-width: 100%;
    }


    .sede-content {
        padding: 24px 18px;
    }


    /* =====================================================
       BOTONES
       ===================================================== */

    .btn,
    .btn-sede,
    .hero-btn,
    .cta-btn,
    .lab-btn-primary,
    .lab-btn-secondary {
        width: 100%;
        max-width: 100%;
    }

}


/* =========================================================
   CELULARES MUY PEQUEÑOS
   380px
   ========================================================= */

@media (max-width: 380px) {

    .sec,
    .consultamedica-hero,
    .consultamedica-servicios,
    .consultamedica-pasos,
    .sedes-servicios,
    .lab-section,
    .gine-section,
    .rutas-moviles,
    .team-wrap,
    .historia-section,
    .pm-hero,
    .eps-section {
        padding-left: 10px;
        padding-right: 10px;
    }


    /* TARJETAS */

    .service-card,
    .services-card,
    .svc-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;

        border-radius: 14px;
    }


    /* CONTENIDO */

    .service-card .card-top,
    .service-card .card-body,
    .service-card .card-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }


    /* TÍTULOS */

    .service-card h3,
    .svc-card h3 {
        font-size: 18px !important;
        line-height: 1.25;
    }


    /* TEXTOS */

    .service-card p,
    .svc-card p {
        font-size: 13.5px;
        line-height: 1.6;
    }


    /* HERO */

    .hero,
    .hero-cancer,
    .hero-banner,
    .hero-cervix-custom,
    .hero-prostata-custom {
        padding-left: 12px;
        padding-right: 12px;
    }

}


/* =========================================================
   CELULARES EXTRA PEQUEÑOS
   320px
   ========================================================= */

@media (max-width: 320px) {

    .sec,
    .consultamedica-hero,
    .consultamedica-servicios,
    .consultamedica-pasos,
    .sedes-servicios,
    .lab-section,
    .gine-section,
    .rutas-moviles,
    .team-wrap,
    .historia-section,
    .pm-hero,
    .eps-section {
        padding-left: 8px;
        padding-right: 8px;
    }


    .service-card,
    .services-card,
    .svc-card {
        width: 100% !important;
        min-width: 0 !important;
        padding-left: 0;
        padding-right: 0;
    }


    .service-card .card-content,
    .service-card .card-body,
    .svc-card .card-content {
        padding-left: 16px;
        padding-right: 16px;
    }


    .service-card h3,
    .svc-card h3 {
        font-size: 17px !important;
    }


    .service-card p,
    .svc-card p {
        font-size: 13px;
    }

}