/* ===================================
   PÁGINA QUEM SOMOS - GOVHUB
   =================================== */

/* Estilos base */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Bootstrap Grid Customization - 12 colunas com gutter 20px */
:root {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.container {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

/* Overview Section */
.overview-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 6rem 0;
}

.overview-content {
    max-width: 1280px;
    margin: 0 auto;
}

.overview-content h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: #7A34F3;
    margin-bottom: 2rem;
    text-align: left;
}

.overview-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #202020;
    margin-bottom: 1rem;
    text-align: left;
}

.overview-content p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #202020;
    text-align: left;
    margin-bottom: 1.5rem;
}

.overview-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .overview-section {
        padding: 6rem 1rem;
    }
    
    .overview-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .overview-section {
        padding: 4rem 1rem;
    }
    
    .overview-content h2 {
        font-size: 1.6rem;
    }
}

/* Team Section */
.team-section {
    width: 100%;
    background-color: #F7F7F7;
    padding: 6rem 0;
}

.team-content h2 {
    color: #7A34F3;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: left;
}

.team-content p {
    font-size: 1rem;
    font-weight: 400;
    color: #202020;
    margin-bottom: 2rem;
}

.team-groups {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.team-group h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #202020;
}

.team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.team-card-info {
    background: #7A34F3;
    padding: 0.75rem 1rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.team-card-info.purple { background: #7A34F3; }
.team-card-info.orange { background: #FF6B35; }

.team-card-info .name {
    font-size: 1rem;
    font-weight: 700;
}

.team-card-info .role {
    font-size: 0.875rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .team-section { padding: 5rem 1rem 6rem; }
}
