html,
body {
  overflow-x: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: scale(1.2);
  /* leve zoom inicial */

  transition:
    opacity 1.8s ease-in-out,
    transform 6s ease-in-out;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.gallery-img {
  transition: transform 0.4s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

nav a {
  cursor: default;
}

.btn-reserva {
  background: #0c3026;
  color: white;
  padding: 14px 40px;
  border-radius: 8px;
  font-weight: 500;
  letter-spacing: 1px;

  transition: all 0.4s ease;
  transform: scale(1);
}

.btn-reserva:hover {
  background: #b78e4c;
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.custom-arrow {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

.custom-arrow::after {
  font-size: 16px;
  color: #0c3026;
}

.custom-arrow:hover {
  background: #b78e4c;
}

.custom-arrow:hover::after {
  color: white;
}

.eventosSwiper .swiper-wrapper {
  align-items: stretch;
}

.eventosSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.eventosSwiper .swiper-slide>div {
  height: 100%;
}

.swiper-slide {
  height: auto;
  display: flex;
}

.swiper-button-prev {
  left: -5rem;
}

.swiper-button-next {
  right: -5rem;
}

.swiper-pagination {
  margin-top: 20px;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #b78e4c;
  width: 18px;
  border-radius: 10px;
}

.swiper-pagination {
  position: relative;
  z-index: 10;
}

.swiper-pagination-eventos {
  margin-top: 20px;
  text-align: center;
}

.swiper-pagination-eventos-bullet {
  width: 6px;
  height: 6px;
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-eventos-bullet-active {
  background: #b78e4c;
  width: 18px;
  border-radius: 10px;
}

.swiper-pagination-eventos {
  position: relative;
  z-index: 10;
}

.card-hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.service-card {
  width: 180px;
  height: 110px;

  background: white;
  border-radius: 18px;
  border: 1px solid #e5e7eb;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;

  transition: all 0.3s ease;
}

.service-card i {
  width: 28px;
  height: 28px;
  color: #b78e4c;
}

.service-card span {
  font-size: 14px;
  color: #0c3026;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-6px);
  border-color: #b78e4c;
}

/* scrollbar elegante */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: #b78e4c;
  border-radius: 10px;
}


.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* HOVER PRO */
.gallery-item:hover .gallery-img {
  transform: scale(1.07);
  filter: brightness(0.9);
}

.map-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

/* iframe */
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%);
  transition: filter 0.6s ease;
}

/* HOVER → vuelve a color */
.map-container:hover iframe {
  filter: grayscale(0%);
}

/* INPUTS */
.input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 14px;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.input::placeholder {
  color: #9ca3af;
}

.input:focus {
  border-color: #b78e4c;
  background: rgba(255, 255, 255, 0.08);
}

/* BOTÓN */
.btn-enviar {
  background: #b78e4c;
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-enviar:hover {
  transform: scale(1.05);
}

/* REDES */
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #b78e4c;
}

.social-icon i {
  width: 18px;
  height: 18px;
  color: white;
}

.social-icon:hover i {
  color: white;
}

#contacto p {
  align-items: center;
  line-height: 1.6;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      #b78e4c,
      transparent);
  opacity: 0.6;
  margin: 16px 0;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

.social-icon i {
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(1px);
}

.social-icon:hover {
  background: #b78e4c;
  transform: translateY(-4px);
}

.swiper {
  width: 100%;
}

.masonry {
  column-count: 1;
  column-gap: 16px;
}

@media (min-width: 640px) {
  .masonry {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .masonry {
    column-count: 4;
  }
}

.masonry-item {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 16px;
  display: block;
  break-inside: avoid;
  transition: transform 0.4s ease;
}

.masonry-item:hover {
  transform: scale(1.03);
}

.menu-link {
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #b78e4c;
  transition: width 0.3s ease;
}

.menu-link:hover::after,
.menu-link:active::after {
  width: 100%;
}

/* ANIMACIÓN ENTRADA */

#mobile-menu.open .menu-link {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER */

#mobile-menu.open .menu-link:nth-child(1) {
  transition-delay: 0.1s;
}

#mobile-menu.open .menu-link:nth-child(2) {
  transition-delay: 0.2s;
}

#mobile-menu.open .menu-link:nth-child(3) {
  transition-delay: 0.3s;
}

#mobile-menu.open .menu-link:nth-child(4) {
  transition-delay: 0.4s;
}

#mobile-menu.open .menu-link:nth-child(5) {
  transition-delay: 0.5s;
}

#mobile-menu.open .menu-link:nth-child(6) {
  transition-delay: 0.6s;
}

#mobile-menu.open .menu-link:nth-child(7) {
  transition-delay: 0.7s;
}

#mobile-menu.open .menu-link:nth-child(8) {
  transition-delay: 0.8s;
}

.card-text p {
  min-height: 100px;
}