/* Video Section Styles */

.video-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
    padding-top: 80px; /* Espaço para o header */
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.05); /* Ajuste para cobrir melhor */
    z-index: 1;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    color: #fff;
}

.hero-text .welcome-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: #F2D574;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #D4AF37; /* Dourado */
}

.hero-text p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #D4AF37 0%, #F2D574 100%);
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #F2D574 0%, #D4AF37 100%);
}

/* Animação de fade in */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text .welcome-text,
.hero-text h1,
.hero-text p,
.cta-button {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.1s;
}

.hero-text p {
    animation-delay: 0.2s;
}

.cta-button {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .video-section {
        padding-top: 70px; /* Menor espaço para header em mobile */
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        margin-bottom: 20px;
    }

    .hero-text p {
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .video-background {
        transform: translate(-50%, -50%) scale(1.1); /* Mais zoom em mobile */
    }
}

@media (max-width: 480px) {
    .video-section {
        padding-top: 60px;
    }
}