/* =============================================
   Unidad Bariatrica Patagónica — Custom Styles
   ============================================= */

:root {
  --ubp-green: #689689;
  --ubp-green-dark: #557a6e;
  --ubp-cream: #fafaf8;
  --ubp-gray: #646464;
  --ubp-text: #2d2d2d;
}

body {
  font-family: 'Fira Sans Condensed', sans-serif;
  color: var(--ubp-text);
}

/* ── NAVBAR ─────────────────────────────────── */
#navegacion {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s ease;
}
#navegacion.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
#navegacion .navbar-brand {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 18px;
  color: var(--ubp-green);
}
#navegacion .nav-link {
  color: var(--ubp-text);
  font-weight: 400;
  transition: color 0.2s;
  padding-left: 1rem;
  padding-right: 1rem;
}
#navegacion .nav-link:hover {
  color: var(--ubp-green);
}

/* ── HERO ────────────────────────────────────── */
/* ── HERO CAROUSEL BACKGROUND ────────────────── */
@keyframes heroFade {
  0%    { opacity: 1; }
  28%   { opacity: 1; }
  35%   { opacity: 0; }
  95%   { opacity: 0; }
  100%  { opacity: 1; }
}

#hero {
  background-color: #f0f0ee;
  padding-top: 72px;
  overflow: hidden;
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: left center;
  opacity: 0;
  animation: heroFade 18s ease-in-out infinite;
  animation-fill-mode: both;
}
.hero-bg-slide:nth-child(1) { animation-delay:   0s; }
.hero-bg-slide:nth-child(2) { animation-delay: -12s; }
.hero-bg-slide:nth-child(3) { animation-delay:  -6s; }

/* Desktop */
.hero-bg-slide-1 { background-image: url(../img/bg-hero/1.png); }
.hero-bg-slide-2 { background-image: url(../img/bg-hero/2.png); }
.hero-bg-slide-3 { background-image: url(../img/bg-hero/3.png); }

/* Mobile: versiones recortadas verticales */
@media (max-width: 767px) {
  .hero-bg-slide-1 { background-image: url(../img/bg-hero/1xs.jpg); }
  .hero-bg-slide-2 { background-image: url(../img/bg-hero/2xs.jpg); }
  .hero-bg-slide-3 { background-image: url(../img/bg-hero/3xs.jpg); }
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(255,255,255,0.96) 30%,
    rgba(255,255,255,0.55) 55%,
    transparent            75%
  );
  pointer-events: none;
  z-index: 1;
}
#hero .container {
  position: relative;
  z-index: 2;
}
.hero-content {
  padding: 5rem 0;
}
.hero-inner {
  max-width: 480px;
}
.hero-pretitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  color: var(--ubp-green-dark);
  font-weight: 700;
  margin-bottom: 12px;
}
.hero-title {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.08;
  color: #2d2d2d;
  margin-bottom: 1.2rem;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #3d3d3d;
  line-height: 1.65;
  margin-bottom: 0.6rem;
}
.hero-obras {
  font-size: 1rem;
  color: #3d3d3d;
  margin-bottom: 0;
}
.hero-obras strong {
  color: #2d2d2d;
  border-bottom: 2px solid var(--ubp-green);
}
@media (max-width: 767px) {
  .hero-content   { padding: 5rem 1rem 3rem; }
  .hero-title     { font-size: 2.2rem; }
  .hero-subtitle  { font-size: 1rem; }
  .hero-img-col   { min-height: 50vw; }
  .hero-pj        { height: auto; width: 100%; position: relative; left: auto; transform: none; }

  /* Imágenes: centrar el encuadre en mobile */
  .hero-bg-slide {
    background-position: center top;
  }

  /* Gradiente: cubre de abajo hacia arriba para legibilidad del texto */
  #hero::before {
    background: linear-gradient(
      to top,
      rgba(255,255,255,1)   30%,
      rgba(255,255,255,0.82) 55%,
      rgba(255,255,255,0.4)  80%,
      transparent            100%
    );
  }

  /* Altura mínima más razonable en mobile */
  #hero .row { min-height: 85vh !important; }

  /* Contenido al fondo del hero (sobre el degradado blanco) */
  #hero .col-md-5 {
    margin-top: auto;
  }
}

/* ── BOTÓN SHINE ─────────────────────────────── */
@keyframes shine {
  0%   { left: -60%; }
  20%  { left: 130%;  }
  100% { left: 130%;  }
}
.btn-shine {
  position: relative;
  overflow: hidden;
}
.btn-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0)    0%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0)    100%
  );
  transform: skewX(-20deg);
  animation: shine 3.5s ease-in-out infinite;
}

/* ── IMC FORM ────────────────────────────────── */
.wrpForm {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}
.wrpForm h3 {
  color: var(--ubp-green);
  font-weight: 700;
  font-size: 1.5rem;
}
.wrpForm label {
  font-weight: 600;
  font-size: 1rem;
}

/* ── MODAL IMC ───────────────────────────────── */
.imc-modal {
  border-radius: 20px !important;
}
.imc-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ubp-green);
}

/* Columna izquierda — form */
.imc-col-form {
  padding: 2rem;
  background: #fff;
}

/* Columna derecha — resultado */
.imc-col-resultado {
  background: #f4f6f4;
  padding: 2rem;
  min-height: 420px;
  border-left: 1px solid #eee;
}

/* Placeholder antes de calcular */
.imc-placeholder {
  text-align: center;
  opacity: 0.3;
}
.imc-placeholder-num {
  font-size: 5rem;
  font-weight: 900;
  color: var(--ubp-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.imc-placeholder-txt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* Pill toggle género */
.imc-toggle-group {
  display: flex;
  gap: 10px;
}
.imc-toggle-btn {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-radius: 50px;
  border: 2px solid #e0e0e0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  color: #888;
  transition: all 0.2s ease;
  background: #f7f7f7;
}
.btn-check:checked + .imc-toggle-btn {
  background: var(--ubp-green);
  border-color: var(--ubp-green);
  color: #fff;
}
.imc-toggle-btn:hover {
  border-color: var(--ubp-green);
  color: var(--ubp-green);
}

/* Slider blocks */
.imc-slider-block {
  background: #f7f8f7;
  border-radius: 14px;
  padding: 16px 20px 12px;
}
.imc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.imc-slider-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
}
.imc-slider-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--ubp-green);
  line-height: 1;
}
.imc-slider-value small {
  font-size: 0.9rem;
  font-weight: 600;
  color: #aaa;
  margin-left: 3px;
}
.imc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 10px;
  background: #ddd;
  outline: none;
  cursor: pointer;
}
.imc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ubp-green);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(104,150,137,0.4);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.imc-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.imc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ubp-green);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(104,150,137,0.4);
  cursor: pointer;
}
.imc-range-limits {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #bbb;
  margin-top: 6px;
}

/* Botón calcular */
.imc-submit {
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px;
}

/* Resultado IMC */
.imc-resultado {
  text-align: center;
  padding: 0.5rem 0;
}
.imc-resultado-numero {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
}
.imc-resultado-badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.imc-resultado-desc {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Escala de colores */
/* Banner candidato */
.imc-candidato-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff8e1;
  border-left: 4px solid #f5c518;
  border-radius: 8px;
  padding: 12px 14px;
  margin: 1rem 0 0.5rem;
  text-align: left;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.4;
}
.imc-candidato-banner strong {
  color: #2d2d2d;
  font-size: 0.92rem;
}
.imc-candidato-ico {
  font-size: 1.4rem;
  color: #f5c518;
  flex-shrink: 0;
}

.imc-scale {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.imc-scale-item {
  flex: 1;
  border-radius: 6px;
  padding: 8px 3px 6px;
  text-align: center;
  transition: transform 0.2s ease;
  opacity: 0.45;
}
.imc-scale-item.activa {
  opacity: 1;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  outline: 3px solid #fff;
  outline-offset: 1px;
  position: relative;
  z-index: 1;
}
.imc-scale-rango {
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
  line-height: 1;
}
.imc-scale-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

/* ── TRUST STRIP ─────────────────────────────── */
#trust {
  background-color: var(--ubp-green);
  color: #fff;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 1.2rem 0;
}
.trust-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── TITULOS DE SECCIÓN ──────────────────────── */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--ubp-gray);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ubp-gray);
}

/* ── EQUIPO ──────────────────────────────────── */
#equipo {
  padding: 8rem 0 5rem;
}
#equipo > .container > .row:first-child .lead {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.75;
}
.img-prof {
  border: 3px solid rgba(104, 150, 137, 0.3);
  object-fit: cover;
  height: 150px;
  width: 150px;
}
.prof-role {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--ubp-green) !important;
}
#equipo h5 {
  font-weight: 600;
  color: var(--ubp-gray);
  margin-bottom: 4px;
}

/* ── CARDS NOVEDADES ─────────────────────────── */
.novedad-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.novedad-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.novedad-img-wrap {
  overflow: hidden;
  height: 190px;
}
.novedad-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.novedad-card:hover .novedad-img-wrap img {
  transform: scale(1.05);
}
.novedad-body {
  padding: 1.1rem 1.2rem 1.3rem;
  border-top: 3px solid var(--ubp-green);
}
.novedad-fecha {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--ubp-green);
  display: block;
  margin-bottom: 0.5rem;
}
.novedad-texto {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Botones redes sociales (novedades) */
.btn-red-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid #ccc;
  background: #fff;
  color: #555;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-red-social:hover {
  border-color: var(--ubp-green);
  color: var(--ubp-green);
  background: rgba(104,150,137,0.06);
}

/* Iconos sociales navbar */
.nav-social {
  display: flex;
  align-items: center;
  color: var(--ubp-gray);
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
  padding: 0.4rem;
}
.nav-social:hover {
  opacity: 1;
  color: var(--ubp-green);
}

/* ── PROCESO ─────────────────────────────────── */
#proceso {
  background: linear-gradient(135deg, var(--ubp-green) 55%, var(--ubp-green-dark) 45%);
  color: #fff;
  padding: 8rem 0;
  border-bottom: 5px solid #f3d350;
}
#proceso h2 {
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1.15;
}
.proceso-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.paso-num {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
}
.proceso-step h4 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 1.1rem;
}
.proceso-step .lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
}

/* ── TRATAMIENTOS ────────────────────────────── */
#tratamientos {
  background-color: #f5f5f3;
  padding: 8rem 0;
}
#tratamientos h3 {
  color: var(--ubp-gray);
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}
#tratamientos .lead {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* ── TRATAMIENTOS CARDS & ANIMACIONES ───────────*/

/* Bloques */
.trat-bloque {
  margin-bottom: 3rem;
}
.trat-bloque-header {
  text-align: center;
  margin-bottom: 1rem;
}
.trat-bloque-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.trat-tag-verde   { background: rgba(104,150,137,0.12); color: var(--ubp-green-dark); }
.trat-tag-naranja { background: rgba(240,147,43,0.12);  color: #c07020; }
.trat-bloque-titulo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ubp-gray);
  margin-bottom: 0.5rem;
}
.trat-bloque-desc {
  font-size: 1rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── JERARQUÍA DE TRATAMIENTOS (50/25/12.5/12.5) ── */

/* Card protagonista: Manga Gástrica */
.trat-card-manga {
  padding: 3rem 2.5rem 2.5rem;
}
.trat-ico-xl {
  width: 160px !important;
  height: 160px !important;
  background: rgba(104,150,137,0.12) !important;
  margin-bottom: 2rem !important;
}
.trat-title-xl {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: var(--ubp-gray);
  margin-bottom: 0.75rem;
}
.manga-sincx {
  display: inline;
  background: linear-gradient(
    120deg,
    var(--ubp-green-dark) 0%,
    var(--ubp-green-dark) 40%,
    #a8d4c8 50%,
    var(--ubp-green-dark) 60%,
    var(--ubp-green-dark) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sincx-shine 3s ease-in-out infinite;
}
@keyframes sincx-shine {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.trat-desc-xl {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
}

/* Grilla de beneficios de Manga Gástrica */
.manga-beneficios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
  text-align: left;
}
.manga-ben-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(104,150,137,0.07);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
}
.manga-ben-ico {
  font-size: 1.1rem;
  line-height: 1.3;
  flex-shrink: 0;
  margin-top: 1px;
}
.manga-ben-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ubp-gray);
  line-height: 1.3;
}
.manga-ben-item span {
  font-size: 0.75rem;
  color: #777;
  line-height: 1.4;
}

/* Card secundaria: Bypass */
.trat-card-bypass {
  padding: 1.75rem 2rem;
  border-radius: 16px;
  background: rgba(240,147,43,0.05);
  border: 1.5px solid rgba(240,147,43,0.2);
}
.trat-card-bypass h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ubp-gray);
  margin-bottom: 0.4rem;
}
.trat-card-bypass p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Cards pequeñas: Balón y Sin cirugía */
.trat-card-sm {
  padding: 1.25rem 1rem;
  border-radius: 14px;
}
.trat-card-sm.trat-col-verde {
  background: rgba(104,150,137,0.07);
  border: 1.5px solid rgba(104,150,137,0.2);
}
.trat-card-sm.trat-col-naranja {
  background: rgba(240,147,43,0.06);
  border: 1.5px solid rgba(240,147,43,0.18);
}
.trat-title-sm {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--ubp-gray);
  margin-bottom: 0.35rem;
}

/* Ícono mediano (bypass, balón, sin cirugía) */
.tratamiento-ico-wrap-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(240,147,43,0.1);
}
.trat-ico-verde {
  background: rgba(104,150,137,0.12) !important;
}
.trat-ico-bypass {
  width: 88px !important;
  height: 88px !important;
}

/* Columnas auxiliares (compatibilidad) */
.trat-col-verde { background: rgba(104,150,137,0.07); border: 1.5px solid rgba(104,150,137,0.25); }
.trat-col-naranja { background: rgba(240,147,43,0.06); border: 1.5px solid rgba(240,147,43,0.2); }

/* Divisor */
.trat-divisor {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
  color: #bbb;
  font-size: 0.85rem;
  font-style: italic;
}
.trat-divisor::before,
.trat-divisor::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

/* Card destacada — Manga Gástrica */
.trat-destacado {
  position: relative;
  border: 2px solid var(--ubp-green) !important;
  background: #fff !important;
  box-shadow: 0 8px 32px rgba(104,150,137,0.18) !important;
}
.trat-badge-destacado {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ubp-green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

@keyframes float {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0   rgba(104,150,137,0.35); }
  70%  { box-shadow: 0 0 0 14px rgba(104,150,137,0);    }
  100% { box-shadow: 0 0 0 0   rgba(104,150,137,0);     }
}

.tratamiento-card {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.tratamiento-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.tratamiento-ico-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(104,150,137,0.1);
  margin-bottom: 1.5rem;
  animation: pulse-ring 2.8s ease-out infinite;
}
.tratamiento-ico {
  animation: float 3.5s ease-in-out infinite;
}
.tratamiento-card:nth-child(2) .tratamiento-ico { animation-delay: 0.5s; }
.tratamiento-card:nth-child(3) .tratamiento-ico { animation-delay: 1s;   }
.tratamiento-card:nth-child(2) .tratamiento-ico-wrap { animation-delay: 0.5s; }
.tratamiento-card:nth-child(3) .tratamiento-ico-wrap { animation-delay: 1s;   }
.tratamiento-card h3 {
  color: var(--ubp-gray);
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.tratamiento-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── OBRAS SOCIALES ──────────────────────────── */
#obras-sociales {
  background: #fff;
  padding: 7rem 0;
  border-top: 4px solid var(--ubp-green);
}
#obras-sociales .section-title {
  font-size: 2.1rem;
}
#obras-sociales .lead {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.75;
}

/* ── CONSULTA / SACAR TURNO ──────────────────── */
#consulta { overflow: hidden; }

.consulta-izq {
  background: var(--ubp-green-dark);
  padding: 6rem 5%;
  min-height: 600px;
}
.consulta-izq-inner { max-width: 420px; }

.consulta-pretitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.consulta-titulo {
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.consulta-subtitulo {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.consulta-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.consulta-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.98rem;
}
.bullet-ico {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.consulta-contacto { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.5rem; }
.consulta-contacto p { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.consulta-contacto-label {
  display: inline-block;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 1px;
  margin-right: 6px;
}
.consulta-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.consulta-link:hover { color: #fff; }

.consulta-der {
  background-color: #f7f8f6;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 18px,
    rgba(104,150,137,0.07) 18px,
    rgba(104,150,137,0.07) 19px
  );
  padding: 6rem 5%;
  justify-content: center;
}
.consulta-form-wrap {
  width: 100%;
  max-width: 500px;
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
}

.consulta-form .form-control {
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #fff;
  font-size: 1rem;
}
.consulta-form .form-control:focus {
  border-color: var(--ubp-green);
  box-shadow: 0 0 0 0.2rem rgba(104,150,137,0.18);
}
.consulta-form .btn-success {
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px;
  letter-spacing: 0.3px;
}

@media (max-width: 767px) {
  .consulta-izq { min-height: auto; padding: 4rem 1.5rem; }
  .consulta-der  { padding: 3rem 1.5rem; }
  .consulta-titulo { font-size: 2.2rem; }
}

/* ── FOOTER ──────────────────────────────────── */
#footer {
  background: #2d2d2d;
  color: rgba(255, 255, 255, 0.5);
  padding: 1.6rem 0;
}

/* ── WHATSAPP FLOTANTE ───────────────────────── */
#waflotante {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
  transition: transform 0.2s ease;
}
#waflotante:hover {
  transform: scale(1.1);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 767px) {
  #equipo              { padding: 5rem 0 3rem; }
  #proceso             { padding: 5rem 0; }
  #proceso h2          { font-size: 2.2rem; }
  #tratamientos        { padding: 5rem 0; }
  #obras-sociales      { padding: 4rem 0; }
  #consulta            { padding: 5rem 0; }
  .section-title       { font-size: 2rem; }
}
