/* Página Quem Somos */
h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
}

/* Hero Section */
.quem-somos-hero {
    padding: 5rem 0;
    background-color: #F8F9FA;
}

.quem-somos-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    font-size: 2.5rem;
    color: #232F3F;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.quem-somos-hero-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.quem-somos-hero-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quem-somos-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Missão, Visão e Valores Section */
.mvv-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.mvv-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #232F3F;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    background-color: #232F3F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mvv-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.mvv-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #232F3F;
    margin-bottom: 1rem;
}

.mvv-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.8;
    margin: 0;
}

.mvv-text strong {
    color: #232F3F;
    font-weight: 600;
}

/* O Que Trabalhamos Section */
.trabalhamos-section {
    padding: 5rem 0;
    background-color: #F8F9FA;
}

.trabalhamos-title {
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    font-size: 2.5rem;
    color: #232F3F;
    margin-bottom: 1rem;
}

.trabalhamos-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.trabalhamos-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trabalhamos-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.trabalhamos-card-icon {
    width: 80px;
    height: 80px;
    background-color: #232F3F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.trabalhamos-card-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.trabalhamos-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #232F3F;
    margin-bottom: 1rem;
}

.trabalhamos-card-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: #232F3F;
    color: #ffffff;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #e4e4e4;
    margin-bottom: 2rem;
}

.cta-btn {
    background-color: #ffffff;
    color: #232F3F;
    border: 2px solid #ffffff;
    border-radius: 0;
    padding: 0.75rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .quem-somos-hero-title {
        font-size: 2rem;
    }
    
    .quem-somos-hero-text {
        font-size: 1rem;
    }
    
    .quem-somos-hero-image {
        margin-top: 2rem;
    }
    
    .trabalhamos-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .quem-somos-hero {
        padding: 3rem 0;
    }
    
    .quem-somos-hero-title {
        font-size: 1.75rem;
    }
    
    .mvv-section,
    .trabalhamos-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    .mvv-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .trabalhamos-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }
}
