/* ===============================================
   CSS PARA MAIN MEJORADO - SAFE TRAVEL PERÚ
=============================================== */

/* Variables actualizadas */
:root {
  --primary: #2ECC71;
  --primary-dark: #27AE60;
  --primary-light: #58D68D;
  --secondary: #1A5D1A;
  --accent: #F39C12;
  --dark: #2C3E50;
  --light: #ECF0F1;
  --white: #FFFFFF;
  --gray: #7F8C8D;
  --gray-light: #BDC3C7;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.2);
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===============================================
   BOTONES FLOTANTES MEJORADOS
=============================================== */

.botones-flotantes {
  position: fixed;
  top: 45%;
  right: 2px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9991;
  /* Asegurar que esté sobre todo */
  text-align: center;
}

.botones-flotantes .boton {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.98);
  padding: 6px;
  border-radius: 10px 0 0 10px;
  /* Borde estilo pestaña */
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--primary);
  border-right: none;
  /* Pegado al borde */
  position: relative;
  overflow: visible;
  max-width: 75px;
}

.botones-flotantes .boton:hover {
  transform: translateX(-5px);
  /* Efecto slide al hover */
  background: var(--white);
  box-shadow: -4px 4px 15px rgba(46, 204, 113, 0.3);
}

.botones-flotantes img {
  width: 60px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 4px;
}

.botones-flotantes span {
  font-size: 9px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  line-height: 1.1;
  display: block;
}

.boton-badge {
  position: absolute;
  top: -6px;
  right: 50%;
  transform: translateX(50%);
  background: var(--accent);
  color: var(--white);
  font-size: 7px;
  padding: 2px 5px;
  border-radius: 10px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border: 1px solid #fff;
}

/* ===============================================
   HERO SECTION MEJORADO - IMAGEN DESDE HTML
=============================================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: var(--white);
  padding: 10px 20px 60px;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Imagen de fondo cargada desde HTML */
.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(1);
}

/* Overlay oscuro sobre la imagen */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  /* Overlay muy suave */
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  animation: fadeInUp 1s ease;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0;
  margin-top: -60px;
}

.hero-badge {
  display: inline-block;
  background: rgba(243, 156, 18, 0.9);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: var(--white);
  line-height: 1.1;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
  opacity: 1;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 70px 15px 40px;
  }

  .hero-content {
    padding: 10px 0;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 5px;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }

  .hero-badge {
    margin-bottom: 15px;
    padding: 6px 16px;
    font-size: 12px;
  }

  .hero-stats {
    margin-bottom: 1.5rem;
    gap: 15px;
  }

  .hero-buttons {
    margin-bottom: 2rem;
    gap: 15px;
  }

  .hero-certifications {
    gap: 15px;
    margin-bottom: 20px;
  }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 40px;
  width: 100%;
}

.btn-primary,
.btn-secondary {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  min-width: 200px;
  justify-content: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border: 2px solid var(--primary);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-certifications {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cert-badge {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: var(--transition);
}

.cert-badge:hover {
  opacity: 1;
  transform: scale(1.1);
}

.cert-text {
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: italic;
}

.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
  animation: bounce 2s infinite;
  z-index: 2;
  margin: 0 auto;
}

.scroll-indicator i {
  font-size: 1.5rem;
}

.scroll-indicator span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}



/* ===============================================
   SECCIONES GENERALES
=============================================== */
.section-header-enhanced {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.6;
  margin-top: 15px;
}

/* ===============================================
   TOURS DESTACADOS MEJORADOS
=============================================== */
.featured-tours {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 50px;
}

.tour-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tour-image-container {
  position: relative;
  height: 220px;
  /* Aumentado ligeramente para mejor vista */
  overflow: hidden;
}

.tour-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-image-container img {
  transform: scale(1.1);
}

.tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
}

.tour-label {
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}

.tour-label.bestseller {
  background: var(--accent);
}

.tour-label.trending {
  background: #e74c3c;
}

.tour-label.recommended {
  background: var(--primary);
}

.tour-label.luxury {
  background: #8e44ad;
}

.tour-price {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  align-self: flex-end;
}

.tour-info {
  padding: 15px;
  /* Reducido de 20px */
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.tour-rating i {
  color: var(--accent);
  font-size: 0.9rem;
}

.rating-text {
  margin-left: 10px;
  font-size: 0.9rem;
  color: var(--gray);
}


.tour-info h3 {
  font-size: 1.6rem;
  /* Increased from 1.4rem */
  margin-bottom: 15px;
  color: var(--dark);
  line-height: 1.3;
}

.tour-info p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1.1rem;
  /* Explicit size, larger */
}

.tour-highlights {
  margin-bottom: 20px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 1rem;
  /* Increased from 0.9rem */
  color: var(--dark);
}

.highlight i {
  color: var(--primary);
  font-size: 0.9rem;
  /* Increased from 0.8rem */
}

.tour-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  color: var(--gray);
  font-size: 1rem;
  /* Increased from 0.9rem */
  flex-wrap: wrap;
  gap: 10px;
}

.tour-details span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tour-actions {
  display: flex;
  gap: 10px;
}

.btn-tour,
.btn-book {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  font-size: 1rem;
  /* Increased from 0.9rem */
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-tour {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-tour:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-book {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-book:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.tours-cta {
  text-align: center;
  padding: 50px 20px;
  background: var(--white);
  border-radius: 20px;
  margin: 50px auto 0;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.cta-content p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-2 {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-2:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}


/* ===============================================
   DESTINOS ÚNICOS
=============================================== */
.unique-destinations {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.destination-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.destination-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
}

.destination-label {
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.destination-info {
  padding: 25px;
}

.destination-info h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.destination-info p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.destination-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.destination-link:hover {
  transform: translateX(5px);
  color: var(--primary-dark);
}

/* ===============================================
   TESTIMONIOS MEJORADOS
=============================================== */
.testimonials-enhanced {
  padding: 80px 20px;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: var(--accent);
  font-size: 1rem;
  margin-right: 2px;
}

.source-logo {
  height: 25px;
  width: auto;
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  position: absolute;
  left: -15px;
  top: -10px;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--dark);
  display: block;
}

.author-location {
  font-size: 0.9rem;
  color: var(--gray);
  display: block;
}

.author-date {
  font-size: 0.8rem;
  color: var(--gray-light);
  display: block;
}

.testimonials-cta {
  text-align: center;
  padding: 40px 20px;
  background: var(--gradient-primary);
  border-radius: 20px;
  color: var(--white);
}

.review-platforms {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.platform-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.platform-link img {
  height: 20px;
  width: auto;
}

/* ===============================================
   GUÍAS DE VIAJE
=============================================== */
.travel-guides {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.guide-card {
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  text-align: center;
}

.guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.guide-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.guide-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.guide-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.guide-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.guide-points {
  text-align: left;
  list-style: none;
  margin-bottom: 25px;
}

.guide-points li {
  padding: 5px 0;
  color: var(--dark);
  position: relative;
  padding-left: 20px;
}

.guide-points li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.guide-link {
  background: var(--primary);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.guide-link:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}


/* ===============================================
   PAQUETES ESPECIALES
=============================================== */
.special-packages {
  padding: 80px 20px;
  background: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.package-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.package-card.romantic {
  border-top: 4px solid #e74c3c;
}

.package-card.family {
  border-top: 4px solid var(--primary);
}

.package-card.adventure {
  border-top: 4px solid var(--accent);
}

.package-header {
  padding: 30px 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.package-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.romantic .package-icon {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.family .package-icon {
  background: var(--gradient-primary);
}

.adventure .package-icon {
  background: linear-gradient(135deg, var(--accent), #e67e22);
}

.package-header h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin: 0;
}

.package-duration {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

.package-image {
  position: relative;
  height: 200px;
  margin: 20px 30px;
  border-radius: 15px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.1);
}

.package-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 15px;
  text-align: center;
}

.package-price {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.package-content {
  padding: 0 30px 30px;
}

.package-content p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.package-includes {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.package-includes li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-size: 0.9rem;
}

.package-includes i {
  color: var(--primary);
  font-size: 0.8rem;
}

.package-actions {
  display: flex;
  gap: 12px;
}

.btn-package,
.btn-package-contact {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  font-size: 0.9rem;
  border: 2px solid var(--primary);
}

.btn-package {
  background: transparent;
  color: var(--primary);
}

.btn-package:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-package-contact {
  background: var(--primary);
  color: var(--white);
}

.btn-package-contact:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.packages-cta {
  text-align: center;
  padding: 50px 30px;
  background: var(--gradient-primary);
  border-radius: 20px;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.packages-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.packages-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.95;
}

.btn-custom {
  background: var(--white);
  color: var(--primary);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.btn-custom:hover {
  background: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===============================================
   GARANTÍAS Y POLÍTICAS
=============================================== */
.guarantees {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.guarantee-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-bottom: 4px solid var(--primary);
}

.guarantee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.guarantee-card:hover .guarantee-icon {
  transform: scale(1.1);
}

.guarantee-icon i {
  font-size: 2rem;
  color: var(--white);
}

.guarantee-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.guarantee-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.guarantee-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.detail {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  padding: 5px 0;
}

/* ===============================================
   PREGUNTAS FRECUENTES (FAQ)
=============================================== */
.faq-section {
  padding: 80px 20px;
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto 50px;
}

.faq-item {
  background: #f8f9fa;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 25px 30px;
  background: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  border-bottom: 1px solid #e9ecef;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 600;
}

.faq-question i {
  color: var(--primary);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 25px 30px;
  max-height: 200px;
}

.faq-answer p {
  margin: 0;
  color: var(--gray);
  line-height: 1.6;
}

.faq-cta {
  text-align: center;
  padding: 40px 20px;
  background: var(--gradient-primary);
  border-radius: 20px;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}

.faq-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.btn-faq {
  background: var(--white);
  color: var(--primary);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-faq:hover {
  background: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===============================================
   CALL TO ACTION FINAL
=============================================== */
.final-cta {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.9), rgba(26, 93, 26, 0.9));
  z-index: -1;
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.final-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-final-primary,
.btn-final-secondary {
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  min-width: 200px;
  justify-content: center;
}

.btn-final-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-final-primary:hover {
  background: var(--light);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-final-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-final-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-5px);
}

.final-cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.9;
  font-style: italic;
}

.final-cta-guarantee i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* ===============================================
   ELEMENTOS FLOTANTES
=============================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 1000;
  animation: bounce 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-10px);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #25d366;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ===============================================
   BOTÓN FLOTANTE "ARMA TU PAQUETE"
=============================================== */
.offers-float {
  position: fixed;
  bottom: 100px;
  /* encima del botón de WhatsApp */
  right: 25px;
  z-index: 1000;
  display: block;
  /* 👈 clave para que aparezca */
}

.offers-btn {
  width: 65px;
  height: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F39C12, #E67E22);
  color: white;
  border-radius: 50%;
  /* 👈 redondo como WhatsApp */
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5);
  transition: 0.3s;
  position: relative;
  animation: bounce 2s infinite;
}

.offers-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(243, 156, 18, 0.7);
}

/* Ícono */
.offers-btn i {
  font-size: 1.4rem;
}

/* Texto tipo burbuja (tooltip) */
.offers-text {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

/* Mostrar texto al pasar mouse */
.offers-btn:hover .offers-text {
  opacity: 1;
  transform: translateY(-50%) translateX(-10px);
}

/* Animación */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Animación de pulso sutil */
@keyframes floatPulse {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.5);
  }

  50% {
    box-shadow: 0 10px 35px rgba(243, 156, 18, 0.7);
  }
}

/* Animación del ícono */
@keyframes iconBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* ===============================================
   BOTÓN FLOTANTE "BLOG" - OPTIMIZADO
=============================================== */
.blog-float {
  position: fixed;
  bottom: 200px;
  right: 15px;
  z-index: 999;
  /* Oculto por defecto en desktop, visible solo en móvil */
  display: none;
}

.blog-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
  color: var(--white);
  padding: 12px 10px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  min-width: 65px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: blogPulse 3s ease-in-out infinite;
}

.blog-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-btn:hover::before {
  opacity: 1;
}

.blog-btn:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.7);
  border-color: rgba(255, 255, 255, 0.6);
}

.blog-btn i {
  font-size: 1.4rem;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  animation: blogIconBounce 2s ease-in-out infinite;
}

.blog-text {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  max-width: 55px;
}

/* Animación de pulso para blog */
@keyframes blogPulse {

  0%,
  100% {
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.5);
  }

  50% {
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.7);
  }
}

/* Animación del ícono de blog */
@keyframes blogIconBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* ===============================================
   BOTÓN FLOTANTE "BLOCKS" - OPTIMIZADO
=============================================== */
.blocks-float {
  position: fixed;
  bottom: 200px;
  right: 15px;
  z-index: 999;
  /* Oculto por defecto en desktop, visible solo en móvil */
  display: none;
}

.blocks-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
  color: var(--white);
  padding: 12px 10px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  min-width: 65px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: blocksPulse 3s ease-in-out infinite;
}

.blocks-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blocks-btn:hover::before {
  opacity: 1;
}

.blocks-btn:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.7);
  border-color: rgba(255, 255, 255, 0.6);
}

.blocks-btn i {
  font-size: 1.4rem;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  animation: blocksIconBounce 2s ease-in-out infinite;
}

.blocks-text {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  max-width: 55px;
}

/* Animación de pulso para blocks */
@keyframes blocksPulse {

  0%,
  100% {
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.5);
  }

  50% {
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.7);
  }
}

/* Animación del ícono de blocks */
@keyframes blocksIconBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* ===============================================
   VISIBILIDAD RESPONSIVE DE BOTONES
=============================================== */

/* MÓVIL (≤768px) - Mostrar botones */
@media (max-width: 768px) {
  .offers-float {
    display: block;
    /* Mostrar botón "Arma tu paquete" */
    bottom: 100px;
    right: 12px;
  }

  .blog-float {
    display: block;
    /* Mostrar botón "Blog" */
    bottom: 190px;
    right: 12px;
  }

  .blocks-float {
    display: block;
    /* Mostrar botón "Blocks" - Pegado al botón "Arma tu paquete" */
    bottom: 175px;
    right: 12px;
  }

  /* Ajustes de tamaño para móvil */
  .offers-btn {
    padding: 10px 8px;
    min-width: 60px;
    border-radius: 14px;
  }

  .offers-btn i {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }

  .offers-text {
    font-size: 0.6rem;
    max-width: 50px;
  }

  .blog-btn {
    padding: 10px 8px;
    min-width: 60px;
    border-radius: 14px;
  }

  .blog-btn i {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }

  .blog-text {
    font-size: 0.6rem;
    max-width: 50px;
  }

  .blocks-btn {
    padding: 10px 8px;
    min-width: 60px;
    border-radius: 14px;
  }

  .blocks-btn i {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }

  .blocks-text {
    font-size: 0.6rem;
    max-width: 50px;
  }
}

/* MÓVIL PEQUEÑO (≤480px) - Ajustes adicionales */
@media (max-width: 480px) {
  .offers-float {
    bottom: 95px;
    right: 10px;
  }

  .blog-float {
    bottom: 185px;
    right: 10px;
  }

  .blocks-float {
    bottom: 170px;
    right: 10px;
  }

  .offers-btn {
    padding: 9px 7px;
    min-width: 55px;
  }

  .offers-btn i {
    font-size: 1.2rem;
  }

  .offers-text {
    font-size: 0.55rem;
    max-width: 48px;
  }

  .blog-btn {
    padding: 9px 7px;
    min-width: 55px;
  }

  .blog-btn i {
    font-size: 1.2rem;
  }

  .blog-text {
    font-size: 0.55rem;
    max-width: 48px;
  }

  .blocks-btn {
    padding: 9px 7px;
    min-width: 55px;
  }

  .blocks-btn i {
    font-size: 1.2rem;
  }

  .blocks-text {
    font-size: 0.55rem;
    max-width: 48px;
  }
}

/* MÓVIL MUY PEQUEÑO (≤360px) - Ajustes extremos */
@media (max-width: 360px) {
  .offers-float {
    bottom: 85px;
    right: 8px;
  }

  .blog-float {
    bottom: 175px;
    right: 8px;
  }

  .blocks-float {
    bottom: 160px;
    right: 8px;
  }
}

/* ===============================================
   ANIMACIONES ADICIONALES
=============================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* ===============================================
   RESPONSIVE MEJORADO - HERO PRACTICANTES
   Aplicando estructura del City Tour
=============================================== */

/* ===============================================
   TABLET (≤1024px)
=============================================== */
@media (max-width: 1024px) {
  .hero-turismo-solidario h1 {
    font-size: 2.5rem;
    /* De 3.5rem */
    margin-bottom: 0.8rem;
    /* De 1.5rem */
  }

  .hero-subtitle {
    font-size: 1rem;
    /* De 1.3rem */
    margin-bottom: 1rem;
    /* De 2rem */
  }

  .hero-stats {
    gap: 20px;
    /* De 50px */
  }
}

/* ===============================================
   MÓVIL (≤768px) - CAMBIOS PRINCIPALES
=============================================== */
@media (max-width: 768px) {

  /* ===============================================
     HEADER CON HORA Y LOGO - RESPONSIVE (MUY ARRIBA)
  ================================================ */
  .promo-colegios-page .hero-header {
    position: absolute;
    top: 8px;
    /* MUY ARRIBA */
    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 (MUY ARRIBA)
  ================================================ */
  .hero-turismo-solidario {
    height: auto;
    /* Ya no es 100vh */
    min-height: 400px;
    /* De 700px a 400px */
    padding: 50px 15px 30px;
    /* MUCHO MENOS PADDING ARRIBA */
  }

  .hero-content {
    margin-top: 10px;
    /* CASI NADA DE MARGEN */
  }

  .hero-turismo-solidario h1 {
    font-size: 2rem;
    /* De 3.5rem */
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    /* De 1.3rem */
    margin-bottom: 1rem;
    /* De 2rem */
  }

  .hero-badge {
    font-size: 10px;
    /* De 14px */
    padding: 5px 12px;
    /* De 10px 25px */
    margin-bottom: 8px;
    /* De 25px */
  }

  .hero-stats {
    gap: 8px;
    /* De 50px */
    margin-bottom: 1.5rem;
    /* De 2rem */
  }

  .hero-stats .stat {
    width: auto;
    max-width: fit-content;
    min-width: auto;
    padding: 10px 16px;
    /* De 20px */
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.25);
  }

  .stat-number {
    font-size: 1.4rem;
    /* De 2.2rem */
  }

  .stat-label {
    font-size: 0.75rem;
    /* De 0.9rem */
    line-height: 1.3;
  }

  /* Botones en columna */
  .hero-buttons {
    flex-direction: column;
    gap: 8px;
    /* De 20px */
    align-items: center;
    margin-bottom: 1.5rem;
    /* De 50px */
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 95%;
    max-width: 280px;
    min-width: auto;
    padding: 10px 16px;
    /* De 16px 40px */
    font-size: 0.85rem;
    /* De 1rem */
  }

  /* ===============================================
     "LOCALHOST" ABAJO A LA DERECHA - MUY ARRIBA
  ================================================ */
  .promo-colegios-page .local-display {
    position: absolute;
    bottom: 15px;
    /* MUY ARRIBA */
    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 - MUY ARRIBA
  ================================================ */
  .scroll-indicator {
    bottom: 10px;
    /* De 40px - MUY ARRIBA */
  }

  .scroll-indicator i {
    font-size: 1rem;
    /* De 1.5rem */
  }

  .scroll-indicator span {
    font-size: 0.6rem;
    /* De 0.85rem */
  }

  /* ===============================================
     RESTO DE SECCIONES (COMPACTAS)
  ================================================ */
  .vp-section,
  .beneficios-educativos,
  .itinerario-section,
  .incluye-section,
  .precios-section,
  .requisitos-section {
    padding: 40px 15px;
    /* De 80px 20px */
  }

  .vp-header h2,
  .beneficios-educativos h2,
  .itinerario-section h2,
  .incluye-section h2,
  .precios-section h2,
  .requisitos-section h2 {
    font-size: 1.8rem;
    /* De 2.5rem */
  }

  .vp-tours-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .incluye-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .precios-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .itinerario-timeline {
    padding-left: 30px;
  }

  .dia-numero {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .cta-promo-colegios {
    padding: 40px 15px;
    /* De 100px 20px */
  }

  .cta-content h2 {
    font-size: 1.6rem;
    /* De 2.5rem */
  }

  .cta-content p {
    font-size: 1rem;
    /* De 1.2rem */
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 350px;
  }
}

/* ===============================================
   MÓVIL PEQUEÑO (≤480px) - VERSIÓN EXTREMA
=============================================== */
@media (max-width: 480px) {

  /* ===============================================
     HEADER CON HORA Y LOGO - MÓVIL PEQUEÑO (MUY ARRIBA)
  ================================================ */
  .promo-colegios-page .hero-header {
    top: 5px;
    /* EXTREMADAMENTE ARRIBA */
    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 (MUY ARRIBA)
  ================================================ */
  .hero-turismo-solidario {
    min-height: 380px;
    /* MUY COMPACTO */
    padding: 40px 10px 25px;
    /* CASI NADA DE PADDING SUPERIOR */
  }

  .hero-content {
    margin-top: 5px;
    /* MÍNIMO MARGEN */
  }

  .hero-turismo-solidario h1 {
    font-size: 1.6rem;
    /* De 2rem */
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    /* De 0.95rem */
    margin-bottom: 0.8rem;
  }

  .hero-badge {
    font-size: 9px;
    /* De 10px */
    padding: 4px 10px;
    margin-bottom: 6px;
  }

  .hero-stats {
    gap: 8px;
    margin-bottom: 1rem;
  }

  .hero-stats .stat {
    width: 95%;
    padding: 10px;
  }

  .stat-number {
    font-size: 1.2rem;
    /* De 1.4rem */
  }

  .stat-label {
    font-size: 0.7rem;
    /* De 0.75rem */
  }

  .hero-buttons {
    gap: 6px;
    margin-bottom: 1.2rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 98%;
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  /* ===============================================
     "LOCALHOST" ABAJO A LA DERECHA - MUY ARRIBA
  ================================================ */
  .promo-colegios-page .local-display {
    bottom: 12px;
    /* CASI PEGADO AL BORDE */
    right: 10px;
    padding: 4px 8px;
    font-size: 0.65rem;
  }

  /* ===============================================
     SCROLL INDICATOR - MUY ARRIBA
  ================================================ */
  .scroll-indicator {
    bottom: 8px;
    /* CASI PEGADO AL BORDE */
  }

  .scroll-indicator i {
    font-size: 0.9rem;
  }

  .scroll-indicator span {
    font-size: 0.55rem;
  }

  /* ===============================================
     RESTO DE SECCIONES (MUY COMPACTAS)
  ================================================ */
  .vp-section,
  .beneficios-educativos,
  .itinerario-section,
  .incluye-section,
  .precios-section,
  .requisitos-section {
    padding: 30px 10px;
  }

  .vp-header h2,
  .beneficios-educativos h2,
  .itinerario-section h2,
  .incluye-section h2,
  .precios-section h2,
  .requisitos-section h2 {
    font-size: 1.4rem;
  }

  .vp-header p {
    font-size: 0.85rem;
  }

  .vp-tour-body {
    padding: 20px;
  }

  .beneficio-card,
  .incluye-card,
  .requisitos-content {
    padding: 25px 20px;
  }

  .dia-content {
    padding: 20px;
  }

  .dia-numero {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .cta-promo-colegios {
    padding: 30px 10px;
  }

  .cta-content h2 {
    font-size: 1.2rem;
  }

  .cta-content p {
    font-size: 0.85rem;
  }
}

/* ===============================================
   MÓVIL MUY PEQUEÑO (≤360px) - VERSIÓN MINIMALISTA
=============================================== */
@media (max-width: 360px) {

  /* ===============================================
     HEADER CON HORA Y LOGO - MÓVIL MUY PEQUEÑO (EXTREMADAMENTE ARRIBA)
  ================================================ */
  .promo-colegios-page .hero-header {
    top: 4px;
    /* PEGADO AL BORDE */
    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 (EXTREMADAMENTE ARRIBA)
  ================================================ */
  .hero-turismo-solidario {
    min-height: 350px;
    /* MÍNIMA ALTURA POSIBLE */
    padding: 35px 8px 20px;
    /* MÍNIMO PADDING SUPERIOR */
  }

  .hero-turismo-solidario h1 {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .hero-badge {
    font-size: 8px;
    /* EXTREMADAMENTE PEQUEÑO */
    padding: 3px 8px;
    margin-bottom: 4px;
  }

  .hero-stats .stat {
    min-width: 70px;
    padding: 8px;
  }

  .stat-number {
    font-size: 1.1rem;
  }

  /* ===============================================
     SCROLL INDICATOR - EXTREMADAMENTE ARRIBA
  ================================================ */
  .scroll-indicator {
    bottom: 6px;
    /* PEGADO AL BORDE */
  }

  /* ===============================================
     RESTO DE SECCIONES (MINIMALISTAS)
  ================================================ */
  .vp-header h2,
  .beneficios-educativos h2,
  .itinerario-section h2,
  .incluye-section h2,
  .precios-section h2,
  .requisitos-section h2 {
    font-size: 1.2rem;
  }
}

/* ===============================================
   MACHU PICCHU SUMMARY SECTION
=============================================== */
.machu-picchu-summary {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
}

.mp-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

/* --- Text Column (Left) --- */
.mp-text-col {
  background-color: #e8f5e9;
  /* Light green bg */
  padding: 50px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.mp-paragraph {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.mp-paragraph strong {
  font-weight: 700;
  color: var(--secondary);
  /* Dark green for bold text */
}

.mp-paragraph.em-text {
  font-style: italic;
  margin-bottom: 30px;
  color: var(--secondary);
  opacity: 0.8;
}

/* --- Button Style --- */
.btn-mp-warning {
  background: var(--gradient-primary);
  /* Green gradient */
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  padding: 18px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  width: 100%;
  justify-content: space-between;
}

.btn-mp-warning:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(46, 204, 113, 0.5);
  border: 2px solid var(--primary);
  padding: 16px 28px;
  /* Adjust for border */
}

/* --- Image Column (Right) --- */
.mp-image-col {
  height: 100%;
  min-height: 500px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mp-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.mp-image-col:hover .mp-image {
  transform: scale(1.03);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .mp-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mp-text-col {
    padding: 30px;
    order: 2;
  }

  .mp-image-col {
    min-height: 300px;
    height: 300px;
    order: 1;
  }

  .btn-mp-warning {
    width: 100%;
    justify-content: center;
  }
}