/* banner.css - Suporte para Vídeo ou Imagem */

.banner {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000000;
}

.banner-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(10, 10, 10, 0.5) 50%,
            rgba(0, 0, 0, 0.75) 100%);
    z-index: 0;
}

.banner-content {
    text-align: center;
    z-index: 2;
    padding: 20px;
    position: relative;
}

/* Título principal - LIMPO E ELEGANTE */
.banner-content h1 {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(255, 255, 255, 0.15);
    letter-spacing: 8px;
}

/* Remove glitch */
.glitch {
    position: relative;
    color: #ffffff;
}

/* Subtítulos - LIMPOS */
.banner-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 20px;
    margin: 8px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
}

/* Botão */
.btn-glow {
    margin-top: 35px;
    font-size: 1rem;
    padding: 16px 40px;
    background: linear-gradient(90deg, #e50914, #b20710);
    box-shadow:
        0 4px 20px rgba(229, 9, 20, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    background: linear-gradient(90deg, #ff0c18, #e50914);
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px rgba(229, 9, 20, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 3px;
}

.btn-glow:active {
    transform: translateY(0);
}

/* Indicador de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    z-index: 2;
}

.scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: #ffffff;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 18px;
        opacity: 0.5;
    }

    100% {
        top: 28px;
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .banner-content h1 {
        font-size: 5rem;
        letter-spacing: 5px;
    }

    .banner-content h2 {
        font-size: 1.6rem;
        letter-spacing: 12px;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }

    .banner-content h2 {
        font-size: 1.3rem;
        letter-spacing: 8px;
    }

    .btn-glow {
        padding: 14px 30px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .scroll-indicator {
        width: 24px;
        height: 38px;
        bottom: 25px;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .banner-content h2 {
        font-size: 1rem;
        letter-spacing: 5px;
    }

    .btn-glow {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* Suporte para altura menor */
@media (max-height: 600px) {
    .banner {
        height: 100vh;
        min-height: 500px;
    }

    .banner-content h1 {
        font-size: 2.5rem;
        margin-bottom: 5px;
    }

    .banner-content h2 {
        font-size: 1.1rem;
        letter-spacing: 5px;
        margin: 3px 0;
    }

    .btn-glow {
        padding: 10px 22px;
        font-size: 0.85rem;
        margin-top: 20px;
    }

    .scroll-indicator {
        bottom: 15px;
        width: 20px;
        height: 30px;
    }
}