/* Contenedor general */
.contenedor-landing {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

/* Sección introductoria */
.intro-cdmx {
  text-align: center;
  margin-bottom: 2rem;
}
.intro-cdmx h1 {
  font-size: 2.2rem;
  color: #06255b;
  margin-bottom: 1rem;
}
.intro-cdmx p {
  font-size: 1.1rem;
  color: #333;
}

/* Cards de destinos */
.destinos-interactivos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.card-destino {
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.card-destino:hover {
  transform: scale(1.02);
}
.card-destino img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card-destino details {
  padding: 1rem;
  background: #fff;
}
.card-destino summary {
  font-weight: bold;
  cursor: pointer;
  color: #06255b;
}

/* Acordeón general */
.acordeon-info details {
  margin-bottom: 1rem;
  background: #f1f4f9;
  padding: 1rem;
  border-radius: 8px;
}
.acordeon-info summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #06255b;
}
.acordeon-info p {
  margin-top: 0.5rem;
  color: #333;
}

/* Sección de beneficios */
.seccion-beneficios {
  background: #edf0f8;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}
.seccion-beneficios h2 {
  color: #06255b;
  text-align: center;
  margin-bottom: 1rem;
}
.seccion-beneficios ul {
  list-style: none;
  padding: 0;
}
.seccion-beneficios li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.seccion-beneficios li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #009688;
  font-weight: bold;
}

/* Preguntas frecuentes */
.faq-section details {
  background: #f9f9f9;
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.faq-section summary {
  font-weight: bold;
  color: #06255b;
  cursor: pointer;
}

/* CTA botón */
.cta-compra {
  text-align: center;
  margin-top: 2rem;
}
.btn-compra {
  background-color: #06255b;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}
.btn-compra:hover {
  background-color: #0b3a91;
}

/* Tips de viaje */
.tips-viaje {
  background: #fffde7;
  border-left: 4px solid #ffeb3b;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}
.tips-viaje h3 {
  margin-top: 0;
  color: #333;
}
.tips-viaje ul {
  list-style: disc;
  padding-left: 1.5rem;
}

/* Rutas populares */
.rutas-populares {
  background: #f3f3f3;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}
.rutas-populares h3 {
  color: #06255b;
}
.rutas-populares ul {
  list-style: none;
  padding: 0;
}
.rutas-populares li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.rutas-populares li::before {
  content: "🚌";
  position: absolute;
  left: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .intro-cdmx h1 {
    font-size: 1.8rem;
  }
  .btn-compra {
    width: 100%;
    padding: 1rem;
  }
}



/* Secciones extra informativas */
.seccion-extra {
  background-color: #f9fbff;
  border-left: 5px solid #06255b;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 10px;
}

.seccion-extra h3 {
  color: #06255b;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.seccion-extra p {
  color: #333;
  margin-bottom: 1rem;
}

.seccion-extra ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.seccion-extra li {
  margin-bottom: 0.5rem;
}

/* Estilo para detalles interactivos dentro de secciones extra */
.seccion-extra details {
  background-color: #fff;
  border: 1px solid #d1e0ff;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: background-color 0.3s ease;
}

.seccion-extra details[open] {
  background-color: #f0f5ff;
}

.seccion-extra summary {
  font-weight: bold;
  color: #06255b;
  cursor: pointer;
}
