/* ===== ESTILOS COMPARTILHADOS (IGUAL AO INDEX.CSS) ===== */

/* Estilos gerais */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Cabeçalho com vídeo */
.video-header {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

#header-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 80%;
    width: auto;
    height: auto;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
}

.logo-container h1 {
    font-size: 5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.logo-container p {
    font-size: 1.5rem;
    margin: 10px 0 0;
    letter-spacing: 2px;
}

/* Navegação principal */
.main-nav {
    background-color: #003366;
    padding: 10px 0;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #5e5e5e;
}

/* Rodapé */
footer {
    background-color: #003366;
    color: white;
    padding: 50px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col {
    width: 30%;
}

.footer-col h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ffcc00;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    background-color: #003366;
    font-size: 0.9rem;
}

.destaques {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.destaque-item {
    width: 30%;
}

.destaque-item i {
    font-size: 3rem;
    color: #003366;
    margin-bottom: 20px;
}

/* ===== ESTILOS ESPECÍFICOS PARA SOBRE.HTML ===== */

/* Abas de navegação */
.tab-container {
    display: flex;
    justify-content: center;
    background-color: #f5f5f5;
    padding: 0;
    margin: 0;
}

.tab-button {
    padding: 15px 40px;
    background-color: transparent;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #003366;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.tab-button:hover {
    color: #004080;
}

.tab-button.active {
    color: #003366;
    background-color: white;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #ffcc00;
}

/* Conteúdo das abas */
.tab-content {
    display: none;
    padding: 60px 0;
}

.tab-content.active {
    display: block;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    color: #003366;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: #ffcc00;
    margin-bottom: 30px;
}

.text-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsividade */
@media (max-width: 992px) {
    .content-container {
        flex-direction: column;
    }
    
    .image-content {
        order: -1;
        margin-bottom: 30px;
    }
    
    .text-content {
        text-align: center;
    }
    
    .divider {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .logo-container h1 {
        font-size: 3rem;
    }
    
    .logo-container p {
        font-size: 1rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav li {
        margin: 5px 0;
    }
    
    .destaques {
        flex-direction: column;
        align-items: center;
    }
    
    .destaque-item {
        width: 80%;
        margin-bottom: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-col {
        width: 80%;
        margin-bottom: 30px;
    }
    
    .tab-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .content-container {
        padding: 0 15px;
    }
    
    .text-content h2 {
        font-size: 1.8rem;
    }
}