body {
  background: #f2e8fb;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

/* ================= HEADER ================= */
.header-content {
  max-width: 100%;
  overflow: visible;
  text-align: center;
  background: #782c94;
  padding: 30px 10px 20px 10px;
}

.logo {
  width: 100%;
  max-width: 1500px; /* Ajusta según tu diseño */
  height: auto;
  filter: drop-shadow(0 6px 18px #2c054633);
  background: none;
  border: none;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 600;
  transition: color 0.2s;
}

nav a:hover {
  color: #f3dafb;
}

.lang-switch-inline {
  display: flex;
  gap: 4px;
}

.lang-btn {
  background: #f3dafb;
  border: none;
  border-radius: 7px;
  padding: 7px 18px;
  font-weight: 600;
  color: #773A8C;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-btn.lang-active {
  background: #fff;
  color: #773A8C;
}

/* ================= QUIÉNES SOMOS ================= */
#quienes-somos {
  padding: 80px 20px 60px 20px;
}

.qs-title {
  text-align: center;
  font-size: 2em;
  color: #773A8C;
  margin-top: 20px;
}

.qs-container {
  max-width: 800px;
  margin: 20px auto 50px auto;
  padding: 0 20px;
  text-align: center;
}

/* ================= TARJETAS DESTINOS ================= */
.destino-section {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.destino-card {
  background: #fff;
  border-radius: 30px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  max-width: 1300px;
  width: 95%;
}

/* Contenedor del swiper */
.destino-card .swiper {
  flex: 0 0 30%; /* Ocupa 65% del ancho disponible */
  height: 400px;
}
/* Slides (videos e imágenes) */
.destino-card .swiper-slide video,
.destino-card .swiper-slide img {
  width: 100%;
  height: 500px; /* Puedes subirlo si quieres aún más alto, por ejemplo 450px o 500px */
  object-fit: contain;
  background-color: #fff;
  display: block;
  border-radius: 22px;
}

/* Información del destino */
.destino-info {
  flex: 1;
  padding: 20px 30px; /* Reducido para acercar el texto */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.destino-title {
  font-size: 1.8em;
  color: #3f1e5c;
  margin-bottom: 10px;
  font-weight: 700;
}

.destino-desc {
  font-size: 1.1em;
  color: #443256;
  line-height: 1.5;
}

/* ================= BOTONES SWIPER ================= */
/* Cambiamos para que queden dentro de la imagen, centrados verticalmente */
.destino-card .swiper-button-next,
.destino-card .swiper-button-prev {
  color: #773A8C;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: #ffffffcc; /* Fondo blanco semi-transparente */
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.destino-card .swiper-button-next::after,
.destino-card .swiper-button-prev::after {
  font-size: 18px;
}

/* Paginación activa */
.swiper-pagination-bullet-active {
  background: #773A8C;
}

/* Responsive para móvil */
@media (max-width: 900px) {
  .destino-card {
    flex-direction: column;
  }

  .destino-card .swiper,
  .destino-card .swiper-slide video,
  .destino-card .swiper-slide img {
    height: 250px; /* Más compacto en móvil */
  }
}

/* ================= FESTIVALES ================= */
.festival-section {
  text-align: center;
  margin: 60px 20px;
}

.festival-section h2 {
  color: #3f1e5c;
}

.festival-section p {
  color: #443256;
  margin-bottom: 20px;
}

.festival-video-container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.festival-video-container video,
.festival-video-container img {
  width: 100%;
  height: 400px;
  object-fit: contain; /* Mostrar completo sin recortes */
  background-color: #fff;
  display: block;
}

@media (max-width: 768px) {
  .festival-video-container video,
  .festival-video-container img {
    height: 250px;
  }
}

/* ================= MISIÓN & VISIÓN ================= */
.mv-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 80px 0 40px 0;
}

.mv-block {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 2px 18px 0 rgba(0,0,0,0.1);
  padding: 34px 44px;
  max-width: 480px;
  text-align: left;
}

.mv-block h2 {
  font-size: 2em;
  color: #773A8C;
  margin-bottom: 12px;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  color: #fff;
  background: #773A8C;
  padding: 30px 0 10px 0;
  font-size: 1.1em;
}

/* ================= ANIMACIÓN FADE ================= */
.fade-in-section {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s, transform 1s;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ================= COTIZACIÓN ================= */
#cotizacion {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.cotizacion-card {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.1);
  padding: 40px 30px;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.cotizacion-card h2 {
  color: #3f1e5c;
  margin-bottom: 10px;
}

.cotizacion-card p {
  color: #443256;
  margin-bottom: 30px;
}

.cotizacion-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.cotizacion-icons a img {
  width: 65px; /* Más grande y uniforme */
  height: 65px;
  transition: transform 0.3s;
}

.cotizacion-icons a img:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .cotizacion-icons a img {
    width: 55px;
    height: 55px;
  }
}
.slogan {
  color: white; /* o el color que desees */
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  text-shadow: 0 0 10px white, 0 0 20px white, 0 0 30px white;
}
.logo {
  width: 550px;
  margin-bottom: 20px;
  background: none;
  border: none;
  display: block;
  margin-left: auto;
  margin-right: auto;

  /* Efecto de destello blanco */
  filter: drop-shadow(0 0 20px white)
          drop-shadow(0 0 40px white)
          drop-shadow(0 0 60px white);
}
