/*hero.css*/


/* Importar fuentes*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Lora:wght@400;500&family=Poppins:wght@500;600&display=swap');


/* ================================ HERO ================================ */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100dvh - var(--header-height));
  text-align: center;
  color: var(--blanco);
  background-image: url('../../media/index/momentospro_hero.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  font-family: 'Playfair Display', serif;
}

/* Overlay más sutil */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.30) 80%
  );
  z-index: 0;
}

/* Borde superior metálico dorado estilo filo aguja */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    to right,
    rgba(212, 175, 55, 0) 0%,
    rgba(212, 175, 55, 0.6) 5%,
    rgba(255, 223, 80, 1) 50%,
    rgba(212, 175, 55, 0.6) 95%,
    rgba(212, 175, 55, 0) 100%
  );
  z-index: 2;
}


/* ================================ TEXTO ================================ */
.hero h1,
.hero p,
.hero .btn-group {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--dorado);
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 1.5px;
}

.hero p {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  line-height: 1.9;
  margin-bottom: 80px;
  max-width: 750px;
  font-weight: 400;
  color: rgba(245, 245, 245, 0.95);
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
}


/* ================================ BOTONES ================================ */
.btn-group {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #ffd700 0%, #e6b800 100%);
  color: #000; /* texto negro */
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

/* ✨ Brillo horizontal SOLO en PC normal */
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100% 
  );
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Hover en PC*/
.btn-primary:hover {
  background: #000;
  color: #ffd700;
  border: 2px solid #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.btn-primary:hover::before {
  opacity: 0;
}

/* ================================ RESPONSIVE ================================ */
@media (max-width: 1024px) {
  .hero {
    padding: 80px 20px 40px;
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 3rem;
    margin-bottom: 30px;
  }

  .hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }

  /* Botón en responsive*/
  .btn-primary {
    background: var(--negro);
    color: var(--dorado);
    border: 2px solid var(--dorado);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
    font-size: 1.2rem;
    width: 70%;
  }

  .btn-primary::before {
    display: none;
  }

  .btn-primary-conct {
    display: none;
  }
}
