@media (max-width: 768px) {
  #home {
    background-position: 17% center !important; /* Ajusta 30% según lo que quieras */
  }
}
@media (max-width: 768px) {
  .carousel-item img {
    height: 220px;
  }
}

.nosotros-section {
  background-color: #9d2527; /* Color vino */
  color: white;
}

.btn-reserva:hover {
  transform: scale(1.1); /* Se agranda un 10% */
}
.btn-experiencia:hover {
  transform: scale(1.1);
  background: #b73335; /* tono más claro al hacer hover */
  box-shadow: 0 6px 14px rgba(157, 37, 39, 0.4);
}

/* Efecto para el ícono (moverlo a la derecha) */
.btn-experiencia:hover i {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

footer p {
  font-size: 12px;
}
.permanent-marker-regular {
  font-family: "Permanent Marker", serif;
  font-weight: 400;
  font-style: normal;
}
.oooh-baby-regular {
  font-family: "Oooh Baby", serif;
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}
/* Botón Principal */
.dynamic-button {
  position: relative;
  overflow: hidden;
  color: white;
  font-weight: bold;
  border-radius: 50px; /* Bordes redondeados */
  padding: 10px 30px; /* Espaciado interno ajustado */
  transition: all 0.3s ease;
}

/* Hover: Cambiar color de fondo y mover ícono */
.dynamic-button:hover {
  background-color: #a43a3c; /* Color más oscuro */
  transform: scale(1.05); /* Ligero aumento de tamaño */
}

.dynamic-button:hover i {
  transform: translateX(10px); /* Mover la flecha hacia la derecha */
}

/* Efecto Subrayado Dinámico */
.dynamic-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.dynamic-button:hover::after {
  left: 0;
  width: 100%;
}

/* Ícono Animado */
.dynamic-button i {
  transition: transform 0.3s ease;
}

.actividad-img {
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.actividad-img:hover {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  #actividades .row {
    text-align: center;
  }
  #actividades img {
    margin-top: 15px;
  }
}
.carousel-item img {
  height: 600px; /* Alto mayor, se puede ajustar */
  width: 300px; /* Ancho reducido */
  object-fit: cover; /* Mantiene la proporción */
  border-radius: 12px; /* Bordes redondeados */
  margin: 0 auto; /* Centra la imagen */
  display: block;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

/* En mobile: botón más chico */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

html {
  scroll-padding-top: 100px; /* o lo que mida tu navbar */
}
body {
  overflow-x: hidden;
}
.hero-section {
  height: 100vh;
  background: url("imgs/index-foto-principal.jpeg") no-repeat center center /
    cover;
  background-attachment: fixed;
  position: relative;
}

@media (max-width: 768px) {
  .hero-section {
    background-position: right center; /* Desplaza el foco hacia la derecha en mobile */
  }
}

.video-container {
  position: relative;
  width: 100%;
  /* Altura provisional hasta leer metadata (evita que “desaparezca”) */
  padding-top: 56.25%;
  /* 16:9 por defecto */
  overflow: hidden;
}

.video-container > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* rellena sin deformar */
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
