/* ====================================
   HERO SECTION
==================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Padrão de fundo decorativo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(45deg, rgba(0, 209, 106, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 209, 106, 0.05) 25%, transparent 25%);
    background-size: 60px 60px;
    opacity: 0.1;
    z-index: 1;
}

/* Background de Vídeo */
.video-background {
    position: absolute;
    inset: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlays e Gradientes */
.video-background::after,
.video-overlay {
    content: '';
    position: absolute;
    inset: 0;
}

.video-background::after {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 40, 20, 0.5));
    z-index: 1;
}

.video-overlay {
    background: rgba(0, 0, 0, 0.2);
}

/* Container do Conteúdo */
.hero-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    gap: 1.2rem;
    z-index: 2;
}

/* Logo Hero */
.hero-logo {
    width: 150px;
    margin-top: 6rem;
    filter: drop-shadow(0 0 20px rgba(0, 209, 106, 0.3));
}

/* Texto Hero */
.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.2;
    animation: fadeInDown 0.8s ease-out forwards;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-white);
    opacity: 0.9;
    max-width: 700px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

/* CTA Button Animation */
.hero .cta-button {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

/* Efeitos Hover */
.hero-content-wrapper:hover .hero-logo {
    filter: drop-shadow(0 0 30px rgba(0, 209, 106, 0.4));
    transform: scale(1.02);
    transition: all 0.4s ease;
}

/* Efeito de Gradiente Dinâmico */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animação do Pattern */
@keyframes patternFloat {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}