* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #1a4f8a;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #ffcc00;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-info a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: background-color 0.3s;
}

.contact-info a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.icon {
    margin-right: 5px;
}

/* Seções de Conteúdo */
.content-section {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Estilos da Seção Férias (mantidos do código anterior) */
.main-content {
    display: flex;
    margin-top: 30px;
    gap: 30px;
}

.left-column {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.left-column h2 {
    color: #1a4f8a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.topic-content {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.topic-content h4 {
    color: #1a4f8a;
    margin-bottom: 15px;
}

details {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

summary {
    padding: 12px 15px;
    background-color: #f8f9fa;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    position: relative;
}

summary:hover {
    background-color: #e9ecef;
}

summary::after {
    content: '+';
    position: absolute;
    right: 15px;
    font-weight: bold;
    transition: transform 0.3s;
}

details[open] summary::after {
    content: '-';
}

details[open] {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

details p {
    padding: 15px;
    background-color: white;
    margin: 0;
    border-top: 1px solid #eee;
}

.topic-content a {
    color: #1a4f8a;
    text-decoration: none;
    font-weight: 600;
}

.topic-content a:hover {
    text-decoration: underline;
}

.contact-form {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.contact-form h3 {
    color: #1a4f8a;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a4f8a;
    box-shadow: 0 0 0 2px rgba(26, 79, 138, 0.2);
}

button {
    background-color: #1a4f8a;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #153c6b;
    transform: translateY(-2px);
}

.right-column {
    width: 300px;
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-box h3 {
    color: #1a4f8a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.progress-container {
    margin-bottom: 20px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
}

.progress-bar {
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    margin-bottom: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #1a4f8a;
    border-radius: 5px;
    transition: width 0.5s ease;
    width: 0;
}

.progress-percentage {
    text-align: right;
    font-size: 14px;
    color: #1a4f8a;
    font-weight: bold;
}

.date-info {
    margin-bottom: 20px;
}

.date-info p:first-child {
    font-weight: bold;
    color: #1a4f8a;
}

.preview-note {
    background-color: #fff9e6;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #ffcc00;
}

/* Estilos da Seção Quem Somos */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: #1a4f8a;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-content {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.about-text h3 {
    color: #1a4f8a;
    margin: 25px 0 15px 0;
    font-size: 1.5rem;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a4f8a;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Estilos da Seção Missão, Visão e Valores */
.mvv-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.mvv-item {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.mvv-item:hover {
    transform: translateY(-5px);
}

.mvv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mvv-item h3 {
    color: #1a4f8a;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.mvv-item p {
    line-height: 1.8;
    color: #555;
}

.values-list {
    list-style: none;
    text-align: left;
}

.values-list li {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #1a4f8a;
}

.values-list strong {
    color: #1a4f8a;
}

footer {
    background-color: #1a4f8a;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Responsividade */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .right-column {
        width: 100%;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mvv-content {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .mvv-item {
        padding: 20px;
    }
}
