.hero-slider {
    position: relative;
    width: 100vw;
    height: 95vh;
    min-height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  
  /* SLIDES */
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    align-items: center;
  }
  
  .slide.active {
    opacity: 1;
    z-index: 1;
  }
  
  /* OVERLAY */
  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: background 0.5s ease-in-out;
  }
  
  /* HERO TEXT */
  .hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFD700;
    padding: 1rem;
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
    margin-top: 0;
    padding-top: 5vh;
    padding-bottom: 5vh;
    
  }
  
  .slide.active .hero-text {
    opacity: 1;
    transform: translateY(0);
  }
  
  .hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-top: 8rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  }
  
  .hero-text p {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.5;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  }
  .hero-text .btn {
    margin-bottom: 0rem; /* reduce espacio inferior */
  }

  
  
  /* SLIDE BACKGROUND ANIMATION */
  .hero-slide img {
    animation: slowZoom 15s ease-in-out infinite;
    transform-origin: center;
  }
  
  @keyframes slowZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.07); }
    100% { transform: scale(1); }
  }
  
  /* INDICADORES DE SLIDE */
  .slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
    margin-top: 0;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .indicator.active {
    background-color: #FFD700;
  }
  
  /* SLIDE FILTER */
  .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: grayscale(20%) brightness(0.9);
    z-index: -1;
    transform: scale(1);
    transition: transform 15s ease-in-out;
  }
  
  .slide.active::before {
    transform: scale(1.18);
  }
  
  /* HERO BUTTON */
  .hero-btn {
    padding: 0.8rem 1.5rem;
    background-color: #FFD700;
    color: #000;
    font-weight: bold;
    border: none;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.3s ease;
    display: inline-block;
  }
  
  .hero-btn:hover {
    background-color: #fff;
    transform: scale(1.05);
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .hero-slider {
      height: auto; /* que se adapte al contenido */
      min-height: 500px;
      padding: 2rem 0;
    }
   .slide {
    height: auto;
    min-height: 100vh;
    position: absolute;
  }
  
    .hero-text h1 {
      font-size: 1.8rem;
       margin-top: 5rem;
       line-height: 1.2; /* aumenta espacio superior */
      font-size: 1.8rem; /* opcional: adapta el tamaño */
      line-height: 1.3;  /* mejora legibilidad */
    }
  
    .hero-text p {
      font-size: 1rem;
    }
    .hero-text {
      padding: 1rem;
       gap: 1rem;
       padding-top: 15vh;
    padding-bottom: 15vh;
    }
    .hero-text .btn {
    margin-bottom: 2rem; /* reduce espacio inferior */
  }

    .slider-indicators {
      bottom: 15px;
    }
  
    .indicator {
      width: 10px;
      height: 10px;
    }
  }
  
  /* GLOW EFFECT (no tocado) */
  .glow-text {
    position: relative;
    color: #d4af37;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    display: inline-block;
  }
  
  .glow-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.7), transparent);
    animation: shimmer 2.5s infinite;
  }
  
  @keyframes shimmer {
    100% {
      left: 125%;
    }
  }
  
  