/* ===================================
   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 {
    color: #7A34F3;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: left;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    text-align: left;
    margin-bottom: 1.5rem;
}

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



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

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

.impact-content h2 {
    color: #7A34F3;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
}

.impact-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    text-align: left;
    margin-bottom: 1.25rem;
}

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

/* 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.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}

.team-content p {
    font-size: 16px;
    color: #444;
    margin-bottom: 2rem;
}

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

.team-group h3 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: #333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.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: #fff;
    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-weight: 600;
    font-size: 0.9rem;
}

.team-card-info .role {
    font-size: 0.75rem;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .team-section { padding: 5rem 1rem 6rem; }
    .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
}
