 /* General */
/* ===================== */
/* RESET & BASE */
/* ===================== */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Evitar scroll lateral */
  
}



/* ===================== */
/* HEADER */
/* ===================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
  background-color: transparent;
}

header.scrolled {
  background-color: rgba(253, 248, 248, 0.69);
  backdrop-filter: blur(5px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 38px;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Lista de navegacion */
nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #032743;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.3rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #00c4cc;
}

/* Boton hamburguesa */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #032743;
  cursor: pointer;
  user-select: none;
}

/* ===================== */
/* HERO */
/* ===================== */
.hero2 {
  position: relative;
  height: 100vh;
  background: url('images/banner-new.webp') center/cover no-repeat fixed;
  display: flex;
  justify-content: left;
  overflow: hidden;
  z-index: 1;
}


/* Curva inferior del hero */
.hero2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: white;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  z-index: 3;
}

.hero-content2 {
  max-width: 750px;
  margin-left:150px;
  margin-top:10%;
  line-height: 20px;
}

.hero-content2 h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #032743;
  margin-bottom: 15px;
}

.hero-content2 h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #032743;
  margin-bottom: 15px;
}

.hero-content2 p {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #032743;
}


.hero-content2 h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #032743;
  margin-top:40%;
}

/* ✅ VISTA ESCRITORIO (ya la tienes, no se modifica) */


/* 📱 TABLET */
@media (max-width: 1024px) {
  .hero2 {
    height: auto; /* evita overflow en pantallas medianas */
    background-attachment: scroll; /* mejora rendimiento en móviles/tablets */
    padding: 60px 20px;
  }

  .hero-content2 {
    margin-left: 50px;
    margin-top: 15%;
    max-width: 90%;
  }

  .hero-content2 h1 {
    font-size: 2.5rem;
  }

  .hero-content2 h2 {
    font-size: 1.6rem;
  }

  .hero-content2 p {
    font-size: 1.4rem;
  }

  .hero-content2 h3 {
    font-size: 1.4rem;
    margin-top: 20%;
  }
}


/* 📱 MÓVIL */
@media (max-width: 768px) {
  .hero2 {
    height: auto;
    padding: 40px 15px;
    background-position: center;
  }

  .hero-content2 {
    margin: 30px auto;
    text-align: center;
    max-width: 72%;
    
    /* 🔹 Fondo blanco con transparencia */
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
  }

  .hero-content2 h1 {
    font-size: 2rem;
  }

  .hero-content2 h2 {
    font-size: 1.4rem;
  }

  .hero-content2 p {
    font-size: 1.2rem;
  }

  .hero-content2 h3 {
    font-size: 1.2rem;
    margin-top: 15%;
  }

  /* Ajustar curva inferior en móviles */
  .hero2::after {
    height: 60px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
}


/* 📱 EXTRA SMALL (teléfonos muy pequeños) */
@media (max-width: 480px) {
  .hero-content2 {
    max-width: 90%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5); /* un poco más opaco en pantallas chicas */
  }

  .hero-content2 h1 {
    font-size: 1.6rem;
  }

  .hero-content2 h2 {
    font-size: 1.2rem;
  }

  .hero-content2 p {
    font-size: 1rem;
  }

  .hero-content2 h3 {
    font-size: 1rem;
  }
}


/* ===================== */
/* RESPONSIVE */
/* ===================== */




/* Tablet */
@media (max-width: 1024px) {
  nav ul {
    margin-right: 0;
  }
}

/* Movil */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    position: absolute;
    top: 70px;
    right: 0;
    flex-direction: column;
    background: rgba(253, 248, 248, 0.95);
    width: 200px;
    padding: 15px 0;
    border-radius: 10px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    display: none; /* Oculto por defecto */
    animation: slideDown 0.3s ease forwards;
  }

  nav ul.active {
    display: flex; /* Mostrar cuando tenga la clase active */
  }

  nav ul li {
    margin: 10px 0;
    text-align: center;
  }

  nav ul li a {
    font-size: 1.1rem;
  }
}

/* Apple iPhone X y similares */
@media only screen 
and (device-width: 375px) 
and (device-height: 812px) 
and (-webkit-device-pixel-ratio: 3) {
  .hero-content2 h1 {
    font-size: 1.5rem;
  }
  .hero-content2 p {
    font-size: 0.9rem;
  }
}

/* ===================== */
/* ANIMACIONES */
/* ===================== */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}



/* SECCIÓN SESIÓN DE BEBÉS */
.sesion-bebes {
  background: #fff;
  padding: 60px 20px;
  font-family: 'Urbanist', sans-serif;
  text-align: center;
  color: #0a2942; /* azul oscuro */
}

.sesion-bebes .contenedor {
  max-width: 900px;
  margin: 0 auto;
}

.sesion-bebes .titulo {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0a2942;
}

.sesion-bebes .subtitulo {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #1d3c53;
}

.sesion-bebes .texto {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #334e68;
  text-align: justify;
}

.sesion-bebes .texto .letra-inicial {
  font-size: 22px;
  font-weight: 700;
  color: #0a2942;
}

.sesion-bebes .resaltado {
  font-size: 16px;
  font-weight: 500;
  color: #0a2942;
  margin-top: 20px;
  line-height: 1.8;
}

/* GALERIA */

.gallery-section {
  padding: 0rem 10em 2em 10em;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Ubicaciones */
.big-left {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.tall-right {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

/* Subgrid para las fotos de abajo */
.bottom-grid {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.small img {
  border-radius: 12px;
  object-fit: cover;
}

/* Imagen horizontal */
.full-width {
  margin-top: 1rem;
  grid-column: 1 / -1;
  width: 100%;
}

.full-width img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
/* Segunda galería */
.second-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* tres columnas */
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2rem;
}

/* Las dos fotos de la izquierda ocupan cada una su fila */
.second-gallery .gallery-item:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.second-gallery .gallery-item:nth-child(2) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

/* La foto central ocupa las dos filas */
.second-gallery .tall-center {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

/* La foto derecha ocupa también las dos filas */
.second-gallery .tall-right {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

/* Banner final */
.final-banner {
  position: relative;
  width: 100%;
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.final-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Texto y botón encima */
.banner-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: #fff;
}

.banner-overlay h2 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-shadow: 0px 2px 6px rgba(0,0,0,0.4);
}

/* Botón estilo WhatsApp */
.banner-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #4ADCE7; /* turquesa similar al de tu imagen */
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.banner-btn:hover {
  background-color: #1aa6b0;
}

/* 📱 TABLET */
@media (max-width: 1024px) {
  .gallery-section {
    padding: 0 3em 2em 3em;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr; /* dos columnas iguales */
  }

  .tall-right {
    grid-column: 2 / 3;
    grid-row: auto;
  }

  .bottom-grid {
    grid-template-columns: 1fr; /* fotos en una sola columna */
  }

  .second-gallery {
    grid-template-columns: 1fr 1fr; /* dos columnas */
  }

  .second-gallery .tall-center,
  .second-gallery .tall-right {
    grid-column: span 1; /* ocupan solo una columna */
    grid-row: auto;
  }
}

/* 📱 MÓVIL */
@media (max-width: 768px) {
  .sesion-bebes {
    padding: 40px 15px;
  }

  .sesion-bebes .titulo {
    font-size: 18px;
  }

  .sesion-bebes .subtitulo {
    font-size: 14px;
  }

  .sesion-bebes .texto,
  .sesion-bebes .resaltado {
    font-size: 14px;
    text-align: left;
  }

  .gallery-section {
    padding: 0 1em 2em 1em;
  }

  .gallery-grid {
    grid-template-columns: 1fr; /* una sola columna */
  }

  .bottom-grid {
    grid-template-columns: 1fr; /* apiladas */
  }

  .second-gallery {
    grid-template-columns: 1fr; /* todo en una columna */
  }

  .final-banner .banner-overlay {
    bottom: 1rem;
    left: 1rem;
  }

  .banner-overlay h2 {
    font-size: 1.2rem;
  }

  .banner-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

/* PRECIOS */

.pricing-section {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-package {
  background-color: #ECF7FB;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 230px;
  padding: 5px;
  text-align: center;
  margin: 5px;
  position: relative;
  perspective: 1000px;
  height: 500px;
}

.highlighted {
  background-color: #ECF7FB
}

.pricing-package h3 {
  color: #CAE5EF;
  font-weight: bold;
  margin-bottom: 0px;
  font-size: 2em;
}

.pricing-package h2 {
  color: #032743;
  font-weight: bold;
  font-size: 1em;
  margin: 0;
  margin-bottom: 0px;
}




.pricing-package p {
  margin: 0px 0;
}

.extra-price {
  color: #032743;
  font-size: 0.8em;
}

ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  text-align: center;
}

ul li {
  margin-bottom: 0px;
  font-size: 0.8em;
}

.finish {
  font-size: 0.8em;
  color: #555;
  margin-top: 0px;
  font-style: italic;
}

.Precios {
  font-size: 2.8em;
  color: #002d62;
  font-weight: bold;
}

/* Botones Flip */
.flip-btn {
  margin-top: auto;
  background-color: #007ac2;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8em;
}

.flip-btn:hover {
  background-color: #30aaf2;
}

/* EFECTO FLIP - ANIMACIÓN */
.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.pricing-package.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: 10px;
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  top: 0;
  left: 0;
}

.card-front {
  z-index: 2;
  transform: rotateY(0deg);
   display: flex;
  flex-direction: column;
  justify-content: space-between; /* Precio siempre abajo */
}

/* CARD BACK */
.card-back {
  background-color: #ECF7FB;
  color: #032743;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* distribuye arriba-medio-abajo */
  align-items: center;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  border-radius: 10px;
}

/* Título */
.card-back h4 {
  color: #4A90A4;
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 10px;
  text-align: center;
}

/* Texto descriptivo */
.card-back p {
  font-size: 1em;
  margin: 10px 0;
  line-height: 1.4em;
  color: #032743;
}

/* Imagen centrada */
.card-back .icon-back {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-back .icon-back img {
  width: 140px;  /* ajusta tamaño según diseño */
  height: auto;
  opacity: 0.9;
}

/* Nota final */
.card-back .note {
  font-size: 0.9em;
  font-style: italic;
  color: #7a7a7a;
  margin-top: auto;
  text-align: center;
}


/* RESPONSIVE */
@media (min-width: 600px) {
  .pricing-package {
    max-width: 45%;
  }
}

@media (min-width: 900px) {
  .pricing-package {
    max-width: 22%;
  }
}


/* PROCESOS */

.newborn-process {
  background: #EEE;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.newborn-process .container {
  max-width: 1200px;
  margin: 0 auto;
}

.newborn-process h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.newborn-process .subtitle {
  text-align: center;
  font-size: 16px;
  color: #546a7b;
  margin-bottom: 30px;
}

.newborn-process .intro {
  text-align: center;
  margin-bottom: 50px;
}

.newborn-process .intro h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Timeline */
.timeline {
  position: relative;
  border-left: 2px dashed #0099cc;
  padding-left: 40px;
}

.step {
  position: relative;
  margin-bottom: 40px;
  width: 100%;
}

.step.right .box {
  margin-left: 40px;
}

.step.left .box {
  margin-left: auto;
  margin-right: 40px;
}

/* Estilo general */
.box {
  background: #fff;
  padding: 30px;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  max-width: 50%;
  position: relative;
  overflow: hidden;
  opacity: 0;               /* 🔹 oculto al inicio */
  transform: translateY(40px); 
  transition: all 0.6s ease;
}

.box.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Títulos y párrafos */
.box h4 {
  font-size: 16px;
  color: #0099cc;
  margin-bottom: 8px;
}

.box p {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

/* Iconos generales */
.box img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* Alternancia de iconos */
.step.right .box img {
  right: 20px;
  left: auto;
}

.step.left .box img {
  left: 20px;
  right: auto;
}

/* 🔹 Separación del texto para que no toque el icono */
.step.right .box {
  padding-right: 90px;  /* espacio extra a la derecha */
}

.step.left .box {
  padding-left: 110px;   /* espacio extra a la izquierda */
}

/* Línea punteada lateral */
.timeline {
  position: relative;
  border-left: 2px dashed #0099cc;
  padding-left: 40px;
}

.step::before {
  content: "";
  position: absolute;
  left: -51px;
  top: 20px;
  width: 14px;
  height: 14px;
  background: #0099cc;
  border-radius: 50%;
}


/* 🔹 SECCIÓN NEWBORN  */
.newborn-section7 {
  text-align: center;
  padding: 40px 20px;
  background: #f7f7f7;
}

.newborn-header7 {
  max-width: 800px;
  margin: 0 auto 20px auto;
  font-weight: 500;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}

/* Imagen */
.image-box7 {
  position: relative;
  max-width: 900px;
  margin: 30px auto 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.image-box7 img {
  width: 100%;
  display: block;
}

.image-text7 {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

/* Contenedor acordeón */
.accordion-container7 {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Flecha circular */
.arrow-circle7 {
  width: 50px;
  height: 50px;
  background: #4ADCE7;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 28px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: top 0.6s ease;
  z-index: 5;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -25px; /* inicial en borde imagen */
}

.arrow-icon7 {
  width: 30px;   /* ajusta según tamaño deseado */
  height: auto;
  display: block;
  transition: transform 0.3s ease; /* para animación de rotación */
}


.accordion-container7.active7 .arrow-circle7 {
  top: 85%; /* 🔹 baja al borde inferior del acordeón */
  transform: translate(-50%, 50%);
}

.arrow-icon7 {
  transform: translateY(2px);
}

/* Acordeón */
.accordion7 {
  max-width: 900px;
  margin: -10px auto;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.6s ease;
  border: 8px solid #032743;
  border-top: none; /* 🔹 elimina el borde superior */
  border-radius: 0 0 40px 40px; /* 🔹 curvatura inferior */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 1); /* 🔹 sombra alrededor */
}


.accordion7.open7 {
  max-height: 800px;
}

.accordion-content7 {
  background: #fff;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

/* Tarjetas */
.card7 {
  text-align: justify;
  padding: 0 15px;
  position: relative;
}

.card7:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #ddd;
}

.card7 img {
  width: 70px;
  margin-bottom: 12px;
}

.card7 h3 {
  font-size: 17px;
  margin: 8px 0;
  font-weight: 600;
  color: #222;
}

.card7 p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* 📱 TABLET */
@media (max-width: 1024px) {
  .accordion-content7 {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    gap: 20px;
    padding: 30px 15px;
  }

  .card7 {
    padding: 0 10px;
  }

  .card7:not(:last-child)::after {
    display: none; /* quitar divisores para no saturar */
  }

  .image-text7 {
    font-size: 20px;
    bottom: 20px;
  }
}

/* 📱 MÓVIL */
@media (max-width: 768px) {
  .newborn-section7 {
    padding: 30px 15px;
  }

  .newborn-header7 {
    font-size: 14px;
    line-height: 1.4;
  }

  .image-box7 {
    margin-top: 20px;
    border-radius: 8px;
  }

  .image-text7 {
    font-size: 16px;
    bottom: 15px;
    padding: 0 10px;
    line-height: 1.3;
  }

  .arrow-circle7 {
    width: 40px;
    height: 40px;
    font-size: 20px;
    top: -20px;
  }
  
  .arrow-icon7 {
  width: 20px;   /* ajusta según tamaño deseado */

}
  
.accordion-container7.active7 .arrow-circle7 {
  top: 94%; /* 🔹 baja al borde inferior del acordeón */
  transform: translate(-50%, 50%);
}  

  .accordion7.open7 {
    max-height: 1000px; /* permitir scroll vertical */
  }

  .accordion-content7 {
    grid-template-columns: 1fr; /* 1 columna */
    padding: 20px 10px;
    gap: 15px;
  }

  .card7 {
    padding: 0 5px;
    text-align: left;
  }

  .card7 img {
    width: 55px;
    margin-bottom: 8px;
  }

  .card7 h3 {
    font-size: 15px;
  }

  .card7 p {
    font-size: 13px;
    line-height: 1.4;
  }
}



/* Estilos generales sección */
.flash-bebes-section {
  background-color: #f0f7fa; /* fondo suave */
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #1a2b49;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* Sección */
.flash-bebes-section {
  background-color: #f5f9fd;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #1a2b49;
  text-align: left;
}

/* Contenedor general: video a la izquierda, texto a la derecha */
.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Video con marco y sombra */
.video-wrapper {
  flex: 0 0 30%; /* 🔹 ocupa 40% */
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.doctor-video {
  width: 100%;
  height: auto;
  display: block;
}

/* Texto superpuesto en el video */
.video-texto {
  position: absolute;
  bottom: 15px;
  left: 20px;
  color: #1a2b49;
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 15px;
  border-radius: 12px;
  font-size: 14px;
}

.video-texto .highlight {
  font-weight: bold;
  color: #0077cc;
}

.credenciales {
  font-size: 11px;
  margin-top: 5px;
  line-height: 1.3;
}

/* Texto a la derecha */
.texto-info {
  flex: 0 0 55%; /* 🔹 ocupa 55% */
  padding-top:100px;
}

.texto-info h2 {
  font-size: 50px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.mitos {
  font-weight: 800;
}

.texto-info p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Nota final centrada */
.nota-final {
  text-align: center;
  margin: 30px auto 10px;
  max-width: 900px;
  font-size: 15px;
}

/* Redes sociales al centro */
.redes {
  text-align: center;
  margin-top: 20px;
}

.redes a {
  margin: 0 10px;
  display: inline-block;
}

.redes img {
  width: 50px;
  height: 50px;
}

/* 📱 TABLET */
@media (max-width: 1024px) {
  .container {
    flex-direction: column; /* video arriba, texto abajo */
    align-items: center;
    gap: 30px;
  }

  .video-wrapper {
    flex: 0 0 100%;
    max-width: 600px;
  }

  .texto-info {
    flex: 0 0 100%;
    padding-top: 40px;
    text-align: center;
  }

  .texto-info h2 {
    font-size: 36px;
  }

  .texto-info p {
    font-size: 18px;
  }
}

/* 📱 MÓVIL */
@media (max-width: 768px) {
  .flash-bebes-section {
    padding: 40px 15px;
    text-align: center;
  }

  .video-wrapper {
    max-width: 100%;
    border-radius: 15px;
  }

  .video-texto {
    font-size: 12px;
    left: 10px;
    bottom: 10px;
    padding: 6px 12px;
  }

  .texto-info {
    padding-top: 20px;
  }

  .texto-info h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .texto-info p {
    font-size: 15px;
    line-height: 1.5;
  }

  .nota-final {
    font-size: 13px;
    padding: 0 10px;
  }

  .redes img {
    width: 40px;
    height: 40px;
  }
}
