/* Página Sobre Nós */
.about-hero {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-hero h1 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero .lead {
    color: var(--gray-color);
    font-size: 1.2rem;
}

.about-content {
    padding: 60px 0;
}

.about-content h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.about-mission {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.mission-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(248, 197, 55, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

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

.about-sidebar .card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.about-sidebar .card-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    font-weight: 500;
}

.team-member {
    text-align: center;
    margin-bottom: 25px;
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.team-member h6 {
    margin-top: 10px;
    font-weight: 600;
}

.about-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.number-item {
    text-align: center;
    padding: 15px;
}

.number-item span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.number-item p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.clients-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.clients-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.client-logo {
    flex: 0 0 calc(20% - 30px);
    max-width: calc(20% - 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 991.98px) {
    .about-mission {
        grid-template-columns: 1fr;
    }
    
    .client-logo {
        flex: 0 0 calc(33.333% - 30px);
        max-width: calc(33.333% - 30px);
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 50px 0;
        text-align: center;
    }
    
    .about-hero .col-lg-6:last-child {
        margin-top: 30px;
    }
    
    .client-logo {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
    
    .about-numbers {
        grid-template-columns: 1fr;
    }
}