/* ===================== ESTILOS ESPECÍFICOS GUARDERÍA ===================== */
  :root {
    --first-color: #fb5c76;
  }
/* Sección Nido de diversión - Row responsive */
.nido-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-direction: row;
  max-width: 1200px;
}

.nido-image {
  flex: 0 0 auto;
}
.nido-image img{
  max-width: 300px;
}

.nido-info {
  flex: 1;
  max-width: 400px;
}

.nido-section{
    display: flex;
    align-items: center;
    justify-content: center;
}
.qs-img-col-guarderia img {
    max-width: 300px;
    border-radius: 18px;
}

.qs-title-guarderia{
    text-align: center;
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #6e6e6e;
}
.actividades-section {
  margin-top: 3rem;
  padding: 0 30px;
}

/* ===================== SECCIÓN HORARIOS - PLANTELES ===================== */
.horarios-section {
  margin: 4rem 0;
  padding: 0 30px;
}

.horarios-content {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  flex-direction: row;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}

.plantel-item {
  flex: 1;
  max-width: 340px;
  text-align: center;
  background: transparent;
  border-radius: 0;
  border: none;
  padding: 1rem 1rem;
}

.horarios-image {
  margin-bottom: 1rem;
}

.horarios-img {
  width: 160px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  margin: 0 auto 0.5rem;
  display: block;
  border: none;
}

.horarios-location {
  font-size: 1.6rem;
  color: var(--first-color);
  font-weight: 700;
  margin: 0.3rem 0;
}

.horarios-subtitle {
  font-size: 0.9rem;
  color: #6B7280;
  margin: 0 0 1rem 0;
  font-style: italic;
}

.horarios-info {
  text-align: center;
}

.horarios-title {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.horarios-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.horario-item {
  font-size: 1rem;
  color: #5f5f5f;
  margin: 0;
}

.horario-item strong {
  color: #374151;
}

/* Botón de WhatsApp para planteles */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--first-color);
  color: white;
  text-decoration: none;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.06);
  color: white;
  text-decoration: none;
}

.whatsapp-btn:active {
  transform: scale(1);
}

.whatsapp-btn i {
  font-size: 1.1rem;
}

.actividades-container {
  display: flex;
  gap: 4rem;
  align-items: flex-end;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
}

.actividades-col {
  flex: 1;
  min-width: 300px;
}

.imagen-col {
  flex: 1;
  max-width: 500px;
}

.actividades-title {
  font-size: 2.5rem;
  color: #E85A7A;
  margin-bottom: 1rem;
  font-weight: 600;
}

.actividades-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 400px;
}

.actividad-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: #6B7280;
  padding: 0.5rem 0;
  max-width: 400px;
}

.diamond-icon {
  width: 12px;
  height: 12px;
  background: #E85A7A;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.imagen-placeholder {
  width: 100%;
  height: 400px;
  background: #F48A9D;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(232, 90, 122, 0.2);
}

.guarderia-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.actividad-item img{
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

.cenefa-img-divider3 {
    width: 390px;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

.qs-title-guarderia-horarios{
text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #6e6e6e;
    margin-top: 7rem;
}

.qs-cenefa{
    max-width: 400px;
}
/* ===================== CARRUSEL DE IMÁGENES ===================== */
.carousel-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(232, 90, 122, 0.2);
  background: #F48A9D;
  border: 5px solid #E85A7A;
}

.carousel-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botones de navegación */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(232, 90, 122, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: rgba(232, 90, 122, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
  left: 15px;
}

.carousel-btn-next {
  right: 15px;
}

/* Indicadores */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
  border-radius: 20px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.carousel-indicator.active {
  background: white;
  transform: scale(1.2);
  border-color: #E85A7A;
}

/* ===================== RESPONSIVE - CAMBIO A COLUMN ===================== */
@media screen and (max-width: 768px) {
  .nido-content {
    flex-direction: column !important;
    text-align: center;
  }
  
  .nido-image {
    order: 1;
  }
  
  .nido-info {
    order: 2;
  }
  
  /* Actividades section - cambiar a column */
  .actividades-container {
    flex-direction: column !important;
    gap: 3rem;
    padding: 0 1rem;
  }
  
  .actividades-col {
    order: 1;
    text-align: center;
  }
  
  .imagen-col {
    order: 2;
    max-width: 100%;
  }
  
  .actividades-title {
    font-size: 2rem;
  }
  
  .imagen-placeholder {
    height: 300px;
  }
  
  /* Carrusel responsive */
  .carousel-container {
    height: 300px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .carousel-btn-prev {
    left: 10px;
  }
  
  .carousel-btn-next {
    right: 10px;
  }
  
  .carousel-indicators {
    bottom: 10px;
  }
  
  /* Horarios - planteles responsive */
  .horarios-content {
    flex-direction: column !important;
    gap: 1.5rem;
    align-items: center;
  }
  
  .plantel-item {
    max-width: 300px;
  }
  
  .horarios-img {
    width: 130px;
    height: auto;
  }
  
  .horarios-location {
    font-size: 1.4rem;
  }
  
  /* Botones WhatsApp responsive tablet */
  .whatsapp-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  .main-content {
  padding: 0 30px !important;
}
.qs-title-guarderia{
    margin-top: 4rem;
}
.qs-img-col-guarderia img {
    max-width: 200px;
    border-radius: 18px;
}
    .actividades-container{
        align-items: normal;
    }
    .actividades-section{
        padding: 0 30px !important;
    }
    .qs-title-guarderia-horarios{
        margin-top: 1rem;
    }
    .horarios-section{
        padding: 0 30px !important;
    }
    .horarios-content{
        align-items: center;
    }
}

/* ===================== RESPONSIVE MÓVIL ===================== */
@media screen and (max-width: 480px) {
  .actividades-container {
    gap: 2rem;
    padding: 0 0.5rem;
  }
  
  .actividades-title {
    font-size: 1.8rem;
  }
  
  .actividad-item {
    font-size: 1rem;
  }
  
  .imagen-placeholder {
    height: 250px;
  }
  
  /* Carrusel responsive móvil */
  .carousel-container {
    height: 250px;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .carousel-btn-prev {
    left: 5px;
  }
  
  .carousel-btn-next {
    right: 5px;
  }
  
  .carousel-indicator {
    width: 10px;
    height: 10px;
  }
  
  /* Horarios - planteles responsive móvil */
  .plantel-item {
    max-width: 260px;
  }
  
  .horarios-img {
    width: 110px;
    height: auto;
  }
  
  .horarios-location {
    font-size: 1.25rem;
  }
  
  .horario-item {
    font-size: 0.9rem;
  }
  
  /* Botones WhatsApp responsive móvil */
  .whatsapp-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    gap: 0.3rem;
  }
  
  .whatsapp-btn i {
    font-size: 1rem;
  }
  .main-content {
  padding: 0 30px !important;
}
.qs-title-guarderia{
    margin-top: 4rem;
}
.qs-img-col-guarderia img {
    max-width: 200px;
    border-radius: 18px;
}
    .actividades-container{
        align-items: normal;
    }
    .actividades-section{
        padding: 0 30px !important;
    }
    .qs-title-guarderia-horarios{
        margin-top: 1rem;
    }
    .horarios-section{
        padding: 0 30px !important;
    }
    .horarios-content{
        align-items: center;
    }
}


