/* assets/css/hero.css - Motor Cinematográfico Maya Core */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 50px;
    overflow: hidden;
    z-index: 2;
}

/* =======================================================
   MOTOR DE SLIDESHOW DE FUNDO (10 IMAGENS)
   ======================================================= */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
    /* Filtro para padronizar as cores: escurece e puxa levemente para o quente/tech */
    filter: brightness(0.35) contrast(1.1) sepia(0.2) hue-rotate(-10deg);
}

.slide.active {
    opacity: 1;
}

/* Película para garantir leitura perfeita do texto e integrar a paleta */
.overlay-film {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 15, 25, 0.4) 0%, var(--color-bg) 95%);
    z-index: -1;
}

/* Partículas */
#particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* =======================================================
   TIPOGRAFIA BRUTALISTA / ALTO LUXO
   ======================================================= */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-content h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: var(--space-6);
}

.gradient-text {
    color: var(--color-primary);
    text-shadow: 0 0 30px rgba(255, 140, 0, 0.4);
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #e2e8f0;
    max-width: 750px;
    margin: 0 auto var(--space-8);
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}