/* Estilos para a seção de história dentro da hero da página Sobre Nós */
.about-hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    flex-direction: column;
}

.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%) scale(0.5);
    object-fit: cover;
    object-position: 40% 40%;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 15, 30, 0.7); /* 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: 900px;
    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: 60px;
    color: var(--text-color-secondary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Estilos para a seção de história dentro da hero */
.about-hero-history {
    text-align: left;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 900px;
}

.about-hero-history-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about-hero-history-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color-secondary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about-hero-history-text p {
    margin-bottom: 20px;
}

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

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .about-hero-history-title {
        font-size: 1.8rem;
    }
    
    .about-hero-history-text {
        font-size: 1rem;
    }
}
