/* Estilos para a seção hero da página Sobre Nós com vídeo de fundo */
.about-hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    max-height: 60vh;
    height: auto;
}

.about-hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.about-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 15, 30, 0.75); /* Overlay escuro com transparência ajustada */
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2; /* Acima do vídeo e overlay */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--text-color-secondary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.8rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
}
