/* ==========================
   Hero eventos
========================== */
.hero-eventos { 
  height: 70vh; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  text-align: center; 
  color: #fff; 
} 

.hero-content { 
  background: #1115; 
  padding: 2rem; 
  border-radius: 12px; 
  box-shadow: 3px 5px 5px #1119;
  margin-top: 230px; 
} 

.hero-content h1 { 
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem; 
}

/* ==========================
   Eventos grid
========================== */
.eventos-section { 
  padding: 4rem 2rem; 
  text-align: center; 
} 

.eventos-section h2 { 
  font-size: 50px; 
  margin-bottom: 2rem; 
} 

.eventos-grid {
  display: flex;
  gap: 2rem;
  max-width: 5000px;
  margin: auto;
}

.eventos-grid > * {
  flex: 1 1 0;
}

/* ==========================
   Tarjetas de eventos
========================== */
.evento-card { 
  position: relative;
  background-color: #dbbba6;
  border-radius: 12px;
  overflow: hidden; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: inherit;
}

.evento-card:hover { 
  transform: translateY(-10px) scale(1.03); 
  box-shadow: 0 8px 25px rgba(0,0,0,0.3); 
}

.evento-card.show { 
  opacity: 1; 
  transform: translateY(0); 
}

/* ==========================
   Imágenes dentro de tarjetas
========================== */
.evento-card img, 
.evento-card-small img,
.evento-fiestas img,
.evento-cumple img,
.evento-coctel img { 
  width: 100%; 
  height: auto; 
  object-fit: cover; 
}

.evento-fiestas img { object-position: center 38%; }
.evento-cumple img { object-position: 70%; }
.evento-coctel img { object-position: 300%; }

/* ==========================
   Contenido de la tarjeta
========================== */
.card-evento h3 {
  font-family: 'Georgia', serif;
  color: #4a2e1e;
   text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 15px;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  
}

.card-evento p {
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  color: #5c4033;
  text-align: center;
  margin: 10 auto;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  
  letter-spacing: 0.5px;
  opacity: 0.9;
  transition: all 0.6s ease;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
   padding: 0 20px 20px;
}

.evento-card:hover .card-evento p {
  color: #3c2a21;
  transform: scale(1.03);
  opacity: 1;
}

/* ==========================
   CTA Section
========================== */
.cta-section {
  background: #dbbba6; 
  color: #fff; 
  text-align: center; 
  padding: 3rem 1rem; 
} 

.cta-section h2 {
  margin-bottom: 1rem; 
  font-weight: bold;
  font-size: clamp(2.5rem, 8vw, 4rem);
  text-transform: uppercase;
} 

.btn { 
  display: inline-block;
  background: #fff; 
  color: #dbbba6;
  padding: 1.5rem 3rem; 
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s; 
  font-size: clamp(1.5rem, 4vw, 2.5rem);
} 

.btn:hover { 
  background: #222; 
  color: #fff; 
}

/* ==========================
   Responsive
========================== */
@media (min-width: 768px) and (max-width: 1199px) {
  .eventos-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
  }

  .eventos-grid > * {
    flex: 1 1 0;
  }
}

@media (max-width: 767px) {
  .eventos-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .eventos-grid > * {
    flex: none;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .eventos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* ==========================
   Video destacado
========================== */
.video-destacado {
  position: relative;
  width: 100%;
  height: 800px; /* altura grande */
  background: #dbbba6;
  overflow: hidden;
  text-align: center;
  color: #000;
}

.video-destacado .video-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.video-destacado .video-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
}

.video-destacado .video-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: 'Georgia', serif;
  color: #000;
}

#activar-sonido {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  border-radius: 5px;
}

/* Responsive móvil */
@media (max-width: 767px) {
  .video-destacado {
    height: 500px;
  }

  .video-destacado .video-content h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}
