/* CSS PARA LAS 5 SECCIONES + HERO - ESTILOS UNIFICADOS */
/* COLORES: #1c1c1c (fondo oscuro), #daa520 (dorado), #ffffff (blanco) */

.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  color: #daa520;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: #daa520;
  margin: 0.5rem auto 2rem auto;
  border-radius: 10px;
}

/* ----- SECCIÓN 1: SUMMARY GRID ----- */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.8rem;
  margin-top: 1rem;
}

.summary-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.5rem 0.8rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s;
}

.summary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -10px rgba(0,0,0,0.12);
}

.summary-icon {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.summary-label {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #daa520;
  margin-bottom: 0.5rem;
}

.summary-value {
  font-weight: 800;
  font-size: 1.2rem;
  color: #1c1c1c;
  margin-bottom: 0.3rem;
}

.summary-desc {
  font-size: 0.8rem;
  color: #6c757d;
}

/* ----- SECCIÓN 2: ITINERARIO ACCORDION (1200px) ----- */
.accordion-container {
  background: #ffffff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.accordion-item {
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 0.5rem;
}

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 1.2rem 0.8rem;
  cursor: pointer;
  font-weight: 600;
  text-align: left;
  transition: background 0.2s;
  border-radius: 10px;
}

.accordion-btn:hover {
  background: #f8f5ef;
}

.accordion-time {
  font-weight: 800;
  color: #daa520;
  min-width: 110px;
  font-size: 0.9rem;
}

.accordion-title {
  flex: 1;
  margin-left: 1rem;
  font-size: 1rem;
  color: #1c1c1c;
}

.accordion-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: #daa520;
  transition: transform 0.3s;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 0.8rem;
  color: #444;
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding-bottom: 1.2rem;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* ----- SECCIÓN 3: CARRUSEL DE FOTOS 1200px ----- */
.carousel-wrapper-1200 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2);
}

.carousel-container-humantay {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.carousel-btn-prev,
.carousel-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 20%;
  backdrop-filter: blur(5px);
  transition: 0.2s;
}

.carousel-btn-prev { left: 15px; }
.carousel-btn-next { right: 15px; }

.carousel-btn-prev:hover,
.carousel-btn-next:hover {
  background: #daa520;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot-slide {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 20%;
  cursor: pointer;
  transition: 0.2s;
}

.dot-slide.active {
  background: #daa520;
  transform: scale(1.2);
}

/* ----- SECCIÓN 4: TARJETAS INCLUYE / NO INCLUYE / PACKING ----- */
.cards-3-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.floating-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
  border: 1px solid rgba(218,165,32,0.2);
}

.floating-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
}

.card-header-icon {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.floating-card h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.3rem;
  color: #1c1c1c;
}

.check-list, .cross-list, .packing-list {
  list-style: none;
  padding-left: 0;
}

.check-list li, .cross-list li, .packing-list li {
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-list li {
  color: #2a6b3c;
}

.cross-list li {
  color: #a03e2c;
}

.packing-list li {
  color: #2c5f7a;
}

.package-note {
  text-align: center;
  background: #f0f0f0;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 500;
  margin-top: 1rem;
  color: #1c1c1c;
}

/* ----- SECCIÓN 5: FAQ ACCORDION (6 preguntas) ----- */
.faq-accordion {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.8rem;
  background: #ffffff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
  color: #1c1c1c;
}

.faq-question:hover {
  background: #f9f6ef;
}

.faq-icon {
  font-size: 1.5rem;
  color: #daa520;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.8rem;
  color: #555;
  line-height: 1.6;
  background: #fefcf8;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 1.3rem;
  padding-top: 0.3rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ============================================ */
/* HERO SECTION - LAGUNA HUMANTAY CON COLORES #1c1c1c, #daa520, #ffffff */
/* ============================================ */
.hero-humantay-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-humantay-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-humantay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-humantay-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-humantay-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(28,28,28,0.85) 0%, rgba(28,28,28,0.7) 50%, rgba(28,28,28,0.5) 100%);
}

.hero-humantay-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-humantay-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero-humantay-badge span {
  background: rgba(218, 165, 32, 0.9);
  padding: 0.5rem 1.2rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  backdrop-filter: blur(5px);
  color: #1c1c1c;
}

.hero-humantay-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
}

.hero-humantay-title .highlight {
  color: #daa520;
  position: relative;
  display: inline-block;
}

.hero-humantay-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(218, 165, 32, 0.3);
  z-index: -1;
}

.hero-humantay-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  text-align: center;
}

.hero-humantay-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
}

.hero-feature-icon {
  font-size: 1.1rem;
}

.hero-humantay-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #daa520;
  color: #1c1c1c;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hero-btn-primary:hover {
  background: #c49b1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #daa520;
  color: #daa520;
  transform: translateY(-2px);
}

.hero-humantay-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(28,28,28,0.7);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.price-item {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.price-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #daa520;
}

.price-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
}

.price-unit {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
}

.price-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.3);
}

.hero-humantay-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

.guarantee-icon {
  font-size: 1rem;
}

/* ============================================ */
/* RESPONSIVE - MÓVIL (TODO CENTRADO) */
/* ============================================ */
@media (max-width: 768px) {
  .container-1200 {
    padding: 2rem 1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .summary-grid {
    gap: 1rem;
  }
  
  .carousel-slide img {
    height: 300px;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  /* HERO RESPONSIVE - TODO CENTRADO */
  .hero-humantay-section {
    min-height: auto;
  }
  
  .hero-humantay-container {
    min-height: auto;
  }
  
  .hero-humantay-content {
    padding: 5rem 1.2rem;
    text-align: center;
  }
  
  .hero-humantay-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .hero-humantay-description {
    font-size: 0.95rem;
    text-align: center;
    padding: 0 0.5rem;
  }
  
  .hero-humantay-features {
    gap: 0.7rem;
    justify-content: center;
  }
  
  .hero-feature {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero-humantay-buttons {
    justify-content: center;
  }
  
  .hero-humantay-prices {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(28,28,28,0.8);
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
  }
  
  .price-divider {
    width: 1px;
    height: 25px;
  }
  
  .hero-btn-primary, .hero-btn-secondary {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero-humantay-guarantee {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    padding: 0 0.5rem;
  }
}

/* Para móviles muy pequeños (menos de 480px) */
@media (max-width: 480px) {
  .hero-humantay-title {
    font-size: 1.8rem;
  }
  
  .hero-humantay-prices {
    flex-direction: column;
    gap: 0.5rem;
    border-radius: 10px;
    padding: 1rem;
  }
  
  .price-divider {
    width: 80%;
    height: 1px;
    margin: 0 auto;
  }
  
  .hero-feature {
    font-size: 0.65rem;
  }
  
  .hero-humantay-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 250px;
  }
  
  .hero-btn-primary, .hero-btn-secondary {
    justify-content: center;
    width: 100%;
  }
}

/* Para desktop la imagen del hero debe cubrir bien */
@media (min-width: 1200px) {
  .hero-humantay-content {
    padding: 8rem 1.5rem;
  }
}