/* ===============================================
   PROMO COLEGIOS - CSS ESPECÍFICO
   Hereda variables y estilos base de main2.css
   Safe Travel Perú
=============================================== */

/* Este archivo asume que ya tienes cargado main2.css */

/* ===============================================
   PÁGINA PROMO COLEGIOS (versión con imagen clara)
=============================================== */
.promo-colegios-page {
  background: #f8f9fa;
}

.hero-promo-colegios {
  position: relative;
  height: 80vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-promo-colegios .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Quitamos el oscurecimiento */
  filter: brightness(1);
}

/* Quitamos la superposición verde */
.hero-promo-colegios .hero-overlay {
  display: none;
}

.hero-promo-colegios .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-promo-colegios h1 {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  /* sombra más suave */
  font-weight: 800;
  line-height: 1.2;
}


/* ===============================================
   BENEFICIOS EDUCATIVOS
=============================================== */
.beneficios-educativos {
  padding: 80px 20px;
  background: var(--white);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.beneficio-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.beneficio-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(46, 125, 50, 0.1), transparent);
  transform: rotate(45deg);
  transition: var(--transition);
}

.beneficio-card:hover::before {
  left: 100%;
}

.beneficio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(46, 125, 50, 0.3);
  border-color: var(--primary);
}

.beneficio-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary) 0%, #43a047 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.beneficio-card:hover .beneficio-icon {
  transform: scale(1.15) rotate(5deg);
}

.beneficio-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.beneficio-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.beneficio-card p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===============================================
   ITINERARIO EDUCATIVO
=============================================== */
.itinerario-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.itinerario-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.itinerario-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  transform: translateX(-50%);
}

.dia-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.dia-item:nth-child(even) {
  flex-direction: row-reverse;
}

.dia-content {
  width: 45%;
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.dia-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dia-numero {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.dia-content h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.dia-content p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 15px;
}

.actividades-lista {
  list-style: none;
  padding: 0;
}

.actividades-lista li {
  padding: 8px 0;
  color: var(--dark);
  font-size: 0.95rem;
  position: relative;
  padding-left: 25px;
}

.actividades-lista li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

/* ===============================================
   INCLUYE / NO INCLUYE
=============================================== */
.incluye-section {
  padding: 80px 20px;
  background: var(--white);
}

.incluye-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.incluye-card {
  background: #f8f9fa;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--primary);
}

.incluye-card.no-incluye {
  border-top-color: #e74c3c;
}

.incluye-card h3 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 25px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.incluye-card h3 i {
  color: var(--primary);
}

.incluye-card.no-incluye h3 i {
  color: #e74c3c;
}

.incluye-lista {
  list-style: none;
  padding: 0;
}

.incluye-lista li {
  padding: 12px 0;
  border-bottom: 1px dashed #ddd;
  color: var(--dark);
  position: relative;
  padding-left: 30px;
}

.incluye-lista li:last-child {
  border-bottom: none;
}

.incluye-lista li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.incluye-card .incluye-lista li::before {
  color: var(--primary);
}

.incluye-card.no-incluye .incluye-lista li::before {
  content: "✗";
  color: #e74c3c;
}

/* ===============================================
   PRECIOS Y GRUPOS
=============================================== */
.precios-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.precios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.precio-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-top: 6px solid var(--primary);
  position: relative;
}

.precio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(46, 125, 50, 0.3);
}

.precio-destacado {
  border-top-color: var(--accent);
}

.badge-popular {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.precio-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.precio-cantidad {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 25px;
}

.precio-monto {
  font-size: 3rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1;
}

.precio-por {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 25px;
}

.precio-lista {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.precio-lista li {
  padding: 10px 0;
  color: var(--dark);
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
}

.precio-lista li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.btn-reservar {
  width: 100%;
  padding: 15px 30px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-reservar:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

/* ===============================================
   REQUISITOS
=============================================== */
.requisitos-section {
  padding: 80px 20px;
  background: var(--white);
}

.requisitos-content {
  max-width: 900px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 6px solid var(--primary);
}

.requisitos-content h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 25px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.requisitos-content h3 i {
  color: var(--primary);
}

.requisitos-lista {
  list-style: none;
  padding: 0;
}

.requisitos-lista li {
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  padding-left: 30px;
}

.requisitos-lista li:last-child {
  border-bottom: none;
}

.requisitos-lista li::before {
  content: "→";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ===============================================
   CTA PROMO COLEGIOS
=============================================== */
.cta-promo-colegios {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #43a047 100%);
  color: var(--white);
  text-align: center;
}

.cta-promo-colegios .cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-promo-colegios h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-promo-colegios p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  line-height: 1.6;
  opacity: 0.95;
}

.cta-promo-colegios .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===============================================
   RESPONSIVE ESPECÍFICO - HERO MEJORADO
=============================================== */

@media (max-width: 1024px) {

  /* Hero */
  .hero-promo-colegios h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }

  .hero-promo-colegios .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-promo-colegios .hero-stats {
    gap: 20px;
  }
}

@media (max-width: 768px) {

  /* ===============================================
     HEADER CON HORA Y LOGO - RESPONSIVE
  ================================================ */
  .promo-colegios-page .hero-header {
    position: absolute;
    top: 8px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
  }

  .promo-colegios-page .time-display {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .promo-colegios-page .logo-lang-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .promo-colegios-page .logo-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
  }

  .promo-colegios-page .language-selector {
    background: transparent;
    color: var(--white);
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
  }

  /* ===============================================
     HERO PRINCIPAL - RESPONSIVE
  ================================================ */
  .hero-promo-colegios {
    height: auto;
    min-height: 400px;
    padding: 50px 15px 30px;
  }

  .hero-promo-colegios .hero-content {
    margin-top: 10px;
  }

  .hero-promo-colegios h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .hero-promo-colegios .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .hero-promo-colegios .hero-stats .stat {
    width: auto;
    max-width: fit-content;
    min-width: auto;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.25);
  }

  .hero-promo-colegios .hero-stats .stat-number {
    font-size: 1.4rem;
  }

  .hero-promo-colegios .hero-stats .stat-label {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .hero-promo-colegios .hero-buttons {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .hero-promo-colegios .btn-primary,
  .hero-promo-colegios .btn-secondary {
    width: 95%;
    max-width: 280px;
    min-width: auto;
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .hero-promo-colegios .hero-badge {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 8px;
  }

  /* ===============================================
     "LOCALHOST" ABAJO A LA DERECHA
  ================================================ */
  .promo-colegios-page .local-display {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 600;
  }

  /* ===============================================
     SCROLL INDICATOR
  ================================================ */
  .hero-promo-colegios .scroll-indicator {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-promo-colegios .scroll-indicator i {
    font-size: 1rem;
  }

  .hero-promo-colegios .scroll-indicator span {
    font-size: 0.6rem;
  }

  /* ===============================================
     RESTO DE SECCIONES
  ================================================ */
  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .itinerario-timeline::before {
    left: 30px;
  }

  .dia-item,
  .dia-item:nth-child(even) {
    flex-direction: row;
  }

  .dia-content {
    width: calc(100% - 90px);
    margin-left: 90px;
  }

  .dia-numero {
    left: 30px;
    transform: none;
  }

  .incluye-grid {
    grid-template-columns: 1fr;
  }

  .precios-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  /* ===============================================
     HEADER CON HORA Y LOGO - MÓVIL PEQUEÑO
  ================================================ */
  .promo-colegios-page .hero-header {
    top: 5px;
    left: 8px;
    right: 8px;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
  }

  .promo-colegios-page .time-display {
    align-self: flex-start;
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  .promo-colegios-page .logo-lang-wrapper {
    align-self: flex-end;
    padding: 4px 8px;
    gap: 6px;
  }

  .promo-colegios-page .logo-text {
    font-size: 0.75rem;
  }

  .promo-colegios-page .language-selector {
    font-size: 0.7rem;
  }

  /* ===============================================
     HERO PRINCIPAL - MÓVIL PEQUEÑO
  ================================================ */
  .hero-promo-colegios {
    min-height: 380px;
    padding: 40px 10px 25px;
  }

  .hero-promo-colegios .hero-content {
    margin-top: 5px;
  }

  .hero-promo-colegios h1 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }

  .hero-promo-colegios .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .hero-promo-colegios .hero-badge {
    font-size: 9px;
    padding: 4px 10px;
    margin-bottom: 6px;
  }

  .hero-promo-colegios .hero-stats {
    gap: 8px;
    margin-bottom: 1rem;
  }

  .hero-promo-colegios .hero-stats .stat {
    width: 95%;
    padding: 10px;
  }

  .hero-promo-colegios .hero-stats .stat-number {
    font-size: 1.2rem;
  }

  .hero-promo-colegios .hero-stats .stat-label {
    font-size: 0.7rem;
  }

  .hero-promo-colegios .hero-buttons {
    gap: 6px;
    margin-bottom: 1.2rem;
  }

  .hero-promo-colegios .btn-primary,
  .hero-promo-colegios .btn-secondary {
    width: 98%;
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  /* ===============================================
     "LOCALHOST" ABAJO A LA DERECHA
  ================================================ */
  .promo-colegios-page .local-display {
    bottom: 12px;
    right: 10px;
    padding: 4px 8px;
    font-size: 0.65rem;
  }

  /* ===============================================
     SCROLL INDICATOR
  ================================================ */
  .hero-promo-colegios .scroll-indicator {
    bottom: 8px;
  }

  .hero-promo-colegios .scroll-indicator i {
    font-size: 0.9rem;
  }

  .hero-promo-colegios .scroll-indicator span {
    font-size: 0.55rem;
  }

  /* ===============================================
     IMAGEN DE FONDO - SE OSCURECE EN MÓVIL
  ================================================ */
  .hero-promo-colegios .hero-bg {
    filter: brightness(0.5) contrast(1.1);
  }

  /* ===============================================
     RESTO DE SECCIONES
  ================================================ */
  .precio-monto {
    font-size: 2.5rem;
  }
}

@media (max-width: 360px) {

  /* ===============================================
     HEADER CON HORA Y LOGO - MÓVIL MUY PEQUEÑO
  ================================================ */
  .promo-colegios-page .hero-header {
    top: 4px;
    left: 6px;
    right: 6px;
  }

  .promo-colegios-page .time-display {
    font-size: 0.65rem;
    padding: 3px 6px;
  }

  .promo-colegios-page .logo-lang-wrapper {
    padding: 3px 6px;
  }

  .promo-colegios-page .logo-text {
    font-size: 0.7rem;
  }

  /* ===============================================
     HERO PRINCIPAL - MÓVIL MUY PEQUEÑO
  ================================================ */
  .hero-promo-colegios {
    min-height: 350px;
    padding: 35px 8px 20px;
  }

  .hero-promo-colegios h1 {
    font-size: 1.4rem;
  }

  .hero-promo-colegios .hero-subtitle {
    font-size: 0.8rem;
  }

  .hero-promo-colegios .hero-badge {
    font-size: 8px;
    padding: 3px 8px;
    margin-bottom: 4px;
  }

  .hero-promo-colegios .hero-stats .stat {
    min-width: 70px;
    padding: 8px;
  }

  .hero-promo-colegios .hero-stats .stat-number {
    font-size: 1.1rem;
  }

  /* ===============================================
     SCROLL INDICATOR
  ================================================ */
  .hero-promo-colegios .scroll-indicator {
    bottom: 6px;
  }
}