/* RESET */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f4f4f4;
}

html {
  scroll-behavior: smooth;
}

/* HERO / PORTADA */
.hero {
  background-color: #074b74;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 300px;
  max-width: 80%;
  height: auto;
}
/* MENÚ PRINCIPAL PEGADO */
.menu-principal {
  position: fixed; /* queda fijo arriba */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0a4c74; /* fondo azul oscuro */
  padding: 12px 0;
  margin: 0;
  z-index: 999; /* se muestra encima de todo */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* sombra */
}

.menu-principal ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu-principal li {
  display: inline-block;
  margin: 0 15px;
}

.menu-principal a {
  text-decoration: none;
  color: white; /* letras blancas */
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.menu-principal a:hover {
  color: #ffd700; /* dorado al pasar el mouse */
}

/* Ajuste para que el contenido de abajo no quede tapado */
main, .contenido-principal, .about, .tours {
  margin-top: 70px; /* dejar espacio por el menú fijo */
}


/* SOBRE NOSOTROS Y TOURS */
.about, .tours {
  padding: 2em;
  text-align: center;
}

.contenido-oculto {
  padding: 10px 15px;
  font-size: 15px;
  text-align: left;
}

.ver-mas-btn {
  margin: 15px auto;
  padding: 8px 20px;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.ver-mas-btn:hover {
  background-color: #004d99;
}


 


/* FOOTER */
footer {
  background: #074b78;
  color: white;
  text-align: center;
  padding: 20px 20px 10px; /* Reducción de altura */
  margin-top: 2em;
  font-size: 14px;
  line-height: 1.4;
}


header.portada {
  position: relative;
  background: url('images/pucon-fondo.jpg') center/cover no-repeat;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  z-index: 1;
}

header.portada::before {
  content: '';
  position: absolute;
  inset: 0solute;
  bottom: 15px;
  right: 15px;
  z-index: 3;
}

.redes-sociales a {
  color: white;
  margin-left: 10px;
  font-size: 22px;
  text-decoration: none;
}
.portada::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* ← esta línea está bien */
  z-index: 0;
}

header.portada * {
  position: relative;
  z-index: 2;
}
/* TELÉFONO */
/*.telefono-portada {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  z-index: 10;
}

.telefono-portada a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.telefono-portada a:hover {
  text-decoration: underline;
}

/* DIRECCIÓN 
.direccion-portada {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  z-index: 10;
}

.direccion-portada i {
  margin-right: 6px;
}

/* REDES SOCIALES 
.redes-sociales {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.redes-sociales a {
  color: white;
  margin-left: 15px;
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.redes-sociales a:hover {
  transform: scale(1.2);
}

*/


/* PORTADA CON FONDO Y LOGO */
header.portada {
  position: relative;
  background: url('images/foto-portada.jpg') center/cover no-repeat;
  height: 500px; /* o más si hace falta */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 1;
  overflow: visible; /* AÑADÍ ESTO si no está */
}


header.portada::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 76, 116, 0.6);
  z-index: 0;
}

header.portada * {
  position: relative;
  z-index: 1;
}

.logo-portada {
  position: relative;
  z-index: 10;
  max-width: 280px;
  height: auto;
  margin-bottom: 20px;
}
/* Posiciones inferiores: Teléfono, Dirección, Redes Sociales */
.telefono-portada {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  z-index: 10;
}

.direccion-portada {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  z-index: 10;
}

.redes-sociales {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.redes-sociales a {
  color: white;
  margin-left: 15px;
  font-size: 24px;
  text-decoration: none;
}

.redes-sociales a:hover {
  transform: scale(1.2);
}


/* BOTÓN WHATSAPP */
.boton-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.boton-whatsapp:hover {
  transform: scale(1.1);
}

/* FORMULARIO DE RESERVA */
.reserva {
  background-color: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
}

.reserva h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.reserva form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
  gap: 10px;
}

.reserva input,
.reserva button {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.reserva button {
  background-color: #0a4c74;
  color: white;
  cursor: pointer;
}

.reserva button:hover {
  background-color: #083c5e;
}




/* ✅ FOOTER PORTADA GENERAL (PC y móvil) */
.footer-portada {
  position: absolute;
  bottom: 0;
  transform: translateY(40px);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
  z-index: 10;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.footer-item {
  display: flex;
  align-items: center;
}



.footer-item.centro {
  justify-content: center;
  text-align: center;
  flex: 1;
}

.footer-item.derecha a {
  color: white;
  margin-left: 15px;
  font-size: 20px;
  text-decoration: none;
}

.footer-item.derecha a:hover {
  transform: scale(1.2);
}


.footer-item {
  display: flex;
  align-items: center;
}

.footer-item.centro {
  justify-content: center;
  text-align: center;
  flex: 1;
}

.footer-item.derecha a {
  color: white;
  margin-left: 15px;
  font-size: 20px;
  text-decoration: none;
}

.footer-item.derecha a:hover {
  transform: scale(1.2);
}


.telefono-portada,
.direccion-portada,
.redes-sociales {
  display: flex;
  align-items: center;
}

.redes-sociales a {
  color: white;
  margin-left: 15px;
  font-size: 20px;
  text-decoration: none;
}

.redes-sociales a:hover {
  transform: scale(1.2);
}
h2, h3 {
  color: #0a4c74; /* Azul Orión */
}
.frase-inspiradora {
  background-color: #ffe3ec; /* fondo rosa suave */
  padding: 30px 20px;
  text-align: center;
}
.frase-inspiradora h2 {
  margin: 0;
  font-family: 'allura', cursive;
  font-size: 55px;
  color: #0a4c74;
  font-weight: bold;
}
.quienes-somos {
  color: #0a4c74;
}
.valoraciones-clientes {
  background-color: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
}

.valoraciones-clientes h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #093d63;
}

.valoracion-total {
  margin-bottom: 30px;
}

.estrella-grande {
  font-size: 36px;
  color: #fbbc05;
}
.logo-google {
  width: 40px;
  height: auto;
  margin-top: 10px;
}

.valoraciones-lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.valoracion-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  width: 300px;
  text-align: left;
}

.valoracion-item .nombre {
  font-weight: bold;
  margin-bottom: 5px;
  color: #093d63;
}

.valoracion-item .nombre span {
  font-weight: normal;
  font-size: 12px;
  color: #888;
}

.valoracion-item .estrellas {
  color: #fbbc05;
  font-size: 18px;
  margin-bottom: 10px;
}

.valoracion-item .comentario {
  font-size: 15px;
  color: #444;
}

/* CONTENEDOR GENERAL */
.contenedor-reseñas {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* TÍTULO */
.contenedor-reseñas h3 {
  color: #0e3a5d;
  font-size: 28px;
  margin-bottom: 30px;
}

/* CARRUSEL */
.reseñas-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding: 10px;
  scroll-behavior: smooth;
  justify-content: center;
}

.reseñas-carousel::-webkit-scrollbar {
  display: none; /* Oculta la barra de scroll */
}

.reseña {
  flex: 0 0 300px;
  scroll-snap-align: center;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.reseña:hover {
  transform: scale(1.03);
}

.reseña p {
  font-style: italic;
  font-size: 16px;
  color: #333;
}

.reseña h4 {
  margin-top: 10px;
  color: #e91e63;
  font-weight: 600;
}

/* FORMULARIO */
#formulario-resena {
  margin-top: 40px;
}

#formulario-resena h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #0e3a5d;
}

/* Estilo solo para el campo de nombre */
#formulario-resena input {
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  width: 280px;
  margin-bottom: 10px;
  padding: 12px;
  outline: none;
  transition: 0.3s;
}

/* Estilo solo para el comentario (más ancho) */
#formulario-resena textarea {
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  width: 700px;  /* << aquí lo agrandás en horizontal */
  height: 140px; /* si querés dejarlo como está en alto */
  margin-bottom: 10px;
  padding: 12px;
  outline: none;
  transition: 0.3s;
}

#formulario-resena input:focus,
#formulario-resena textarea:focus {
  border-color: #e91e63;
}

#formulario-resena button {
  background: #e91e63;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

#formulario-resena button:hover {
  background: #c2185b;
}
#formulario-reseñas {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.reseña i.fab.fa-google {
  color: #db4437;
  font-size: 20px;
  margin-right: 8px;
}
.logos-respaldo {
  text-align: center;
  margin-top: 20px;
}

.logos-respaldo img {
  max-width: 250px;
  height: auto;
  opacity: 0.9;
}
.footer {
  background-color: #002c5a;
  color: white;
  padding: 40px 20px 20px 20px;
  font-size: 15px;
}
.footer-contenido {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px 30px; /* ← menos espacio vertical, mantiene horizontal */
  padding: 10px 0; /* ← reduce padding vertical */
}

.footer h4 {
  font-size: 16px;
  color: white;
  margin-bottom: 10px;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 8px;
}

.redes-sociales a {
  font-size: 22px;
  color: #ff4081;
  margin-right: 12px;
  transition: 0.3s;
}

.redes-sociales a:hover {
  transform: scale(1.2);
}

.logos-respaldo {
  text-align: center;
  margin: 30px 0 15px 0;
}

.logos-respaldo img {
  max-width: 250px;
  height: auto;
  opacity: 0.9;
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: #ccc;
  margin-top: 10px;
}
.footer {
  background-color: #002c5a;
  color: white;
  padding: 40px 20px 20px 20px;
  font-size: 15px;
}

.footer-contenido {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.footer h4 {
  font-size: 16px;
  color: white;
  margin-bottom: 10px;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 8px;
}

.redes-sociales a {
  font-size: 22px;
  color: #ff4081;
  margin-right: 12px;
  transition: 0.3s;
}

.redes-sociales a:hover {
  transform: scale(1.2);
}

.logos-respaldo {
  text-align: center;
  margin: 30px 0 15px 0;
}

.logos-respaldo img {
  max-width: 250px;
  height: auto;
  opacity: 0.9;
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: #ccc;
  margin-top: 10px;
}
.footer-orion {
  background: linear-gradient(to right, #002e6d, #001f4d);
  color: white;
  padding: 40px 20px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}

.footer-contenido {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 240px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #3eb7ff; /* Celeste */
}


.footer-col p,
.footer-col a {
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.logo-orion-footer {
  margin-top: 20px;
  text-align: center;
}

.logo-orion-footer img {
  width: 200px;
}
p
.social-icons {
  font-size: 22px;
  color: #ff5ea9;
  display: flex;
  gap: 20px;
  margin-bottom: 20x;
}
.social-icons i {
  color: #ff5ea9; /* Fucsia intenso */
  transition: transform 0.3s ease;
}

.social-icons i:hover {
  transform: scale(1.2);
  color: #ff87c5; /* Fucsia claro al pasar el mouse (opcional) */
}

.logos-entidades {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  padding: 0;
}

.logos-entidades img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  margin: 0 5px;
}







.footer-copy {
  text-align: center;
  font-size: 13px;
  color: #ccc;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}
.footer-redes {
  display: flex;
  gap: 15px;
  margin-left: 200px; /* Aumentá este valor para mover más a la derecha */
}
.footer-col.redes {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* alinea todo a la derecha */
  gap: 20px;
  margin-right: 40px;
}

.footer-col.redes h3 {
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
  text-align: right;
}

.social-icons {
  display: flex;
  gap: 18px;
  font-size: 22px;
  color: #ff69b4; /* rosa */
  margin-right: 10px;
}

.social-icons i {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.social-icons i:hover {
  transform: scale(1.2);
}


.footer-col.redes h3 {
  padding-left: 60px; /* mismo valor que .footer-col.redes */
}
/* Alinear el título "Síguenos" con los íconos */
.footer-col.redes h3 {
  text-align: left;
  padding-left: 50px; /* Puedes ajustar a 40px o 60px según cómo lo veas */
}

/* Bajar un poco las redes para acercarlas a los logos */
.footer-col .social-icons {
  margin-bottom: 10px; /* Ajustable: entre 5px y 15px */
}

/* Centrar mejor la imagen de logos de respaldo */
.footer-col.redes {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Alinea todo el contenido a la izquierda */
}

.footer-col.redes h3 {
  padding-left: 0; /* Elimina el desplazamiento hacia la derecha */
  margin-bottom: 10px;
}
.footer-col.redes {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 0;
  padding: 0;
}

.footer-col.redes h3 {
  margin-bottom: 10px;
  color: white;
}

.footer-col.redes .social-icons {
  margin-bottom: 10px;
}
.footer-col.redes .logos-entidades img {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-top: 10px;
}

.footer-col.redes h3 {
  color: #3eb7ff !important;
}
.titulo-destacado {
  background-color: #fff8cc; /* Amarillo pastel suave */
  padding: 15px 30px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #002e6d; /* Azul Orión */
  border-radius: 12px;
  width: fit-content;
  margin: 0 auto 30px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.titulo-quienes {
  background-color: #d8f0ff; /* Celeste pastel suave */
  padding: 15px 30px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #002e6d; /* Azul Orión */
  border-radius: 12px;
  width: fit-content;
  margin: 0 auto 30px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}



.contenido-carrusel {
  position: relative;
  z-index: 1;
}
.overlay-azul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 27, 42, 0.5); /* Azul oscuro con transparencia */
  z-index: 1;
}


.contenido-carrusel {
  position: relative;
  z-index: 1;
}

.slider {
  position: relative;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.4); /* Fondo comentarios semitransparente */
}

.slide.active {
  display: block;
  animation: fade 1s ease-in-out;
}

button.prev,

button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f4d35e;
  border: none;
  color: black;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 3;
}
.carrusel-valoraciones {
  position: relative;
  background-image: url('images/fotovaloracion.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #0d1b2a;
  padding: 60px 20px;
  color: white;
  text-align: center;
  overflow: hidden;
}

.carrusel-valoraciones::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 27, 42, 0.6); /* lámina azul */
  z-index: 0;
}

.carrusel-valoraciones * {
  position: relative;
  z-index: 1;
}





button.prev:hover,
button.next:hover {
  background-color: #ffc300;
}

button.prev {
  left: -50px;
}

button.next {
  right: -50px;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.detalles-tour {
  margin-top: 15px;
  text-align: left;
  background: #fff9f1;
  padding: 15px;
  border-radius: 10px;
  font-size: 15px;
}

.precio-tour {
  color: #0a4c74;
  font-weight: bold;
  margin-bottom: 10px;
}

.formulario-reserva-tarjeta input,
.formulario-reserva-tarjeta button {
  width: 100%;
  padding: 10px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.formulario-reserva-tarjeta button {
  background-color: #0a4c74;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.formulario-reserva-tarjeta button:hover {
  background-color: #093357;
}
.oculto { display: none; }

.contenido-oculto {
  margin-top: 10px;
}

.precio-tour {
  color: #0a4c74;
  font-weight: bold;
  margin: 10px 0;
}

.formulario-reserva-tarjeta input,
.formulario-reserva-tarjeta button {
  width: 100%;
  padding: 10px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.formulario-reserva-tarjeta button {
  background-color: #0a4c74;
  color: white;
  font-weight: bold;
  cursor: pointer;
  
}
.slide img {
  display: block;
  margin: 20px auto 0;
  max-width: 90%;
  border-radius: 10px;
}

.footer-portada .footer-item.derecha a i {
  color: #ff5ea9; /* Fucsia original */
  font-size: 22px;
  margin: 0 8px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-portada .footer-item.derecha a i:hover {
  color: #ff87c5; /* Fucsia más claro al pasar el mouse */
  transform: scale(1.2);
}
/* Reducir altura del footer y sus columnas */
footer {
  padding: 10px 0; /* Menor espacio arriba/abajo */
  font-size: 14px;
  line-height: 1.4;
}

/* Espaciado entre columnas */
.footer-col {
  margin-bottom: 0;
  padding: 0 10px;
}

/* Reducir espacio en títulos y párrafos */
.footer-col h3 {
  margin: 10px 0 5px;
  font-size: 16px;
}

.footer-col p,
.footer-col a {
  margin: 4px 0;
}

/* Íconos sociales */
.social-icons {
  font-size: 18px;
  gap: 12px;
  justify-content: center;
}




.footer-col {
  flex: 1 1 250px;
  min-width: 240px;
  padding: 0;
  margin: 0;
}
.logos-entidades {
  width: 100%;
  text-align: center; /* centra horizontalmente */
  margin-top: 20px;
}


.logos-entidades img {
  width: 400px; /* ajusta a gusto */
  height: auto;
}

.contenido-oculto {
  padding: 10px 15px;
  font-size: 15px;
  text-align: left;
}

.ver-mas-btn {
  margin: 15px auto;
  padding: 8px 20px;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.ver-mas-btn:hover {
  background-color: #004d99;
}
 .resumen,
  .texto-completo {
    font-size: 15px;
    padding: 0 10px;
    text-align: center;
  }

  .ver-mas-btn {
    display: block;
    margin: 10px auto;
    font-size: 16px;
    padding: 10px 20px;
    width: fit-content;
  }

  /* 🔹 Header / Footer portada */
  .footer-portada {
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 14px;
    gap: 5px;
  }

  .telefono-portada,
  .direccion-portada,
  .redes-sociales {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .redes-sociales a {
    margin: 0 10px;
    font-size: 20px;
    color: white;
    text-decoration: none;
  }

  .redes-sociales a:hover {
    transform: scale(1.2);
  }

  footer {
    font-size: 14px;
    text-align: center;
    padding: 20px;
  }
/* ✅ TARJETAS: Estructura principal */
.tour-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.tour-item {
  background-color: #e6f3fc;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 30%;
  min-width: 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s;
}

/* ✅ Hover solo escritorio */
@media screen and (min-width: 769px) {
  .tour-item:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    cursor: pointer;
  }
}

/* ✅ RESPONSIVE MOBILE */
@media screen and (max-width: 768px) {
  .tour-grid {
    display: flex;
    flex-direction: column;
    align-items: center;        /* centramos las tarjetas en el viewport */
    padding: 0 10px;            /* margen suave lateral */
    box-sizing: border-box;
  }

  .tour-item {
    width: 100%;
    max-width: 380px;
    margin: 10px 0;
  }

  .tour-item img {
    width: 100%;
    height: auto;
    border-radius: 15px 15px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .tour-grid {
    display: flex;
    flex-direction: column;
    align-items: center !important; /* 🔵 Forzamos centro */
    justify-content: center !important;
    width: 100% !important;
    padding: 0 10px !important;
    box-sizing: border-box;
  }

  .tour-item {
    width: 100% !important;          /* Ocupa todo el ancho disponible */
    max-width: 380px !important;     /* Ancho máximo legible */
    margin: 10px 0 !important;       /* Margen vertical limpio */
    border-radius: 15px !important;
  }

  .tour-item img {
    width: 100% !important;
    height: auto;
    border-radius: 15px 15px 0 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .tours {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .tour-grid {
    align-items: center !important;
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .tour-item {
    margin: 10px auto !important;
    width: 94% !important;
  }
}
@media screen and (max-width: 768px) {
  iframe {
    display: block !important;
    width: 100% !important;
    height: 400px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
.footer-item.derecha a i {
  color: #ff4da6; /* Fucsia original */
  font-size: 22px;
  margin-left: 18px;
  transition: color 0.3s;
}

.footer-item.derecha a:hover i {
  color: white; /* Cambia si quieres efecto al pasar el mouse */
}
