/* ============================================
   QUEM SOMOS PAGE STYLES
   ============================================ */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray-dark) 100%);
    color: var(--white);
    padding: 120px 20px 80px;
    text-align: center;
    margin-top: 80px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Missão, Visão e Valores */
.mvv-section {
    padding: 80px 20px;
    background-color: var(--gray-light);
}

.mvv-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mvv-header {
    text-align: center;
    margin-bottom: 60px;
}

.mvv-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.mvv-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mvv-card:nth-child(1) {
    border-top-color: var(--primary);
}

.mvv-card:nth-child(2) {
    border-top-color: var(--secondary);
}

.mvv-card:nth-child(3) {
    border-top-color: var(--accent);
}

.mvv-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mvv-card p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin: 0;
}

/* Section Header (reusable) */
.values-section {
    padding: 80px 20px;
}

.values-section .container {
    max-width: 1200px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header .section-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 15px auto 0;
}

/* Values Grid (reusable) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--white);
}

.value-card h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
    background-color: var(--gray-light);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.team-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-member-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}

.team-member-info {
    padding: 30px;
    text-align: center;
}

.team-member-name {
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-member-role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.team-member-bio {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-member-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-member-link {
    width: 40px;
    height: 40px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.team-member-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* Why Choose Us Section */
.why-us-section {
    padding: 80px 20px;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-us-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-us-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.why-us-item:hover {
    box-shadow: var(--shadow-md);
}

.why-us-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.why-us-content h3 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-top: 0;
}

.why-us-content p {
    color: var(--gray-dark);
    margin: 0;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .mvv-grid,
    .values-grid,
    .team-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2,
    .team-header h2,
    .why-us-header h2,
    .mvv-header h2 {
        font-size: 2rem;
    }

    .team-member-image {
        height: 200px;
        font-size: 3rem;
    }
}
