/* ========================================
   Sección Hero
   ======================================== */
   .seccion-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.contenido-hero {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    animation: aparecer-arriba 1s ease-out;
}

@keyframes aparecer-arriba {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.titulo-hero {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.titulo-hero .resaltado {
    color: var(--dorado);
    display: block;
}

.subtitulo-hero {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--texto-gris);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.botones-hero {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Indicador de Scroll (Solo Móvil)
   ======================================== */
.indicador-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    transition: opacity 0.5s ease;
    z-index: 10;
}

.indicador-scroll.oculto {
    opacity: 0;
    pointer-events: none;
}

.indicador-scroll span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--dorado);
    border-radius: 25px;
    position: relative;
}

.indicador-scroll span::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--dorado);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll-invertido 2s infinite;
}

@keyframes scroll-invertido {
    0% { bottom: 10px; opacity: 1; }
    100% { bottom: 30px; opacity: 0; }
}

/* ========================================
   Diseño Responsive - Hero
   ======================================== */
@media (max-width: 768px) {
    .botones-hero {
        flex-direction: column;
        align-items: center;
    }
    
    .boton {
        width: 100%;
        max-width: 300px;
    }
    
    .indicador-scroll {
        display: block;
    }
}