@import url('team-styles.css');

/* Estilos adicionais para o rodapé com créditos */
.footer-credits {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
    text-align: center;
    color: #e0e0e0;
}

.footer-credits p {
    margin: 0.5rem 0;
}

.footer-credits strong {
    color: #ffffff;
    font-weight: 600;
}

/* Ajustes para o modo escuro */
body.dark-mode .footer-credits {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Estilos para a página Sobre Nós */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    padding: 3rem 0;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-text h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.content-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-text ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.content-text li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1.1rem;
    }
    
    .content-text h2 {
        font-size: 1.6rem;
    }
}
