/* Estilos específicos para página sobre */

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    text-align: center;
    padding: 140px 0 80px;
    margin-top: 70px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.our-history {
    padding: 80px 0;
    background-color: var(--light-color);
}

.history-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.history-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.history-image {
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.history-image:hover img {
    transform: scale(1.05);
}

.mission-vision-values {
    padding: 80px 0;
    background-color: var(--gray-light);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.pillar-card {
    background: var(--light-color);
    border: 1px solid var(--gray-light);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.pillar-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pillar-card p {
    color: var(--gray-color);
    line-height: 1.7;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: var(--gray-color);
}

.values-list i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 3px;
}

.our-team {
    padding: 80px 0;
    background-color: var(--light-color);
}

.team-card {
    background: var(--light-color);
    border: 1px solid var(--gray-light);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
}

.team-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-role {
    color: var(--gray-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-desc {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 992px) {
    .about-hero {
        padding: 100px 0 50px;
    }
    
    .about-hero h1 {
        font-size: 2.8rem;
    }
    
    .history-content h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 40px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .history-content {
        margin-bottom: 40px;
    }
    
    .team-card {
        margin-bottom: 30px;
    }
}