/* Hero Section Styles */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.hero-title {
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 400;
    color: white;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    max-width: 600px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1.5rem 3rem 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    /* Otimização para mobile - reduz qualidade do vídeo */
    .hero-video {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem 2.5rem 1rem;
    }
}

/* Melhora de performance em dispositivos com motion reduzido */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
    
    .hero {
        background-image: url('assets/hero-section.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
} 