/* ================================================
   HERO VIDEO CAROUSEL — Cacciatore & Cacciatore
   Pegar al final del style.css
   ================================================ */

.hero-video {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

/* ---- Slides ---- */
.hv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
  z-index: 1;
}
.hv-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  min-height: 100vh;
  z-index: 2;
}

/* ---- Video de fondo ---- */
.hv-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ---- Overlay oscuro sobre el video ---- */
.hv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* ---- Contenido centrado ---- */
.hv-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

/* ---- Eyebrow (texto pequeño arriba) ---- */
.hv-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hv-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- Título principal ---- */
.hv-title {
  font-family: 'Roboto', serif;
  font-size: clamp(1.8rem, 3.5vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 0.6rem;
}
.hv-title em {
  font-style: italic;
  color: #b9973a;
}

/* ---- Subtítulo ---- */
.hv-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d4b96a;
  margin-bottom: 1.5rem;
}

/* ---- Descripción ---- */
.hv-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ---- Botones ---- */
.hv-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hv-btn-outline {
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}
.hv-btn-outline:hover {
  border-color: #BFAE76 !important;
  color: #BFAE76 !important;
}

/* ---- Dots de navegación ---- */
.hv-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.hv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hv-dot.active {
  background: #b9973a;
  border-color: #b9973a;
  transform: scale(1.2);
}

/* ---- Flechas prev/next ---- */
.hv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-arrow:hover {
  background: rgba(185, 151, 58, 0.6);
  border-color: #b9973a;
}
.hv-prev { left: 1.5rem; }
.hv-next { right: 1.5rem; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hv-arrow { display: none; }
  .hv-title { font-size: 2.2rem; }
  .hv-content { padding: 6rem 1.5rem 4rem; }
}