.page-title {
    text-align: center;
    margin: 2rem 0 3rem;
    color: #2ab7a9;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.page-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f9d71c;
    border-radius: 2px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.about-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-section h2 {
    color: #2ab7a9;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-section h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ffd700;
    margin-top: 0.5rem;
}

.about-section p {
    color: #555;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.highlight {
    color: #2ab7a9;
    font-weight: 600;
}

/* Carrossel da Equipe */
.team-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 60px;
}

.team-carousel {
    overflow: hidden;
    position: relative;
}

.team-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    will-change: transform;
    align-items: stretch;
}

.team-member {
    flex: 0 0 calc((100% - 60px) / 3);
    min-width: 0;
    text-align: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(42, 183, 169, 0.15);
    border-color: #2ab7a9;
}

.team-member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(42, 183, 169, 0.1), rgba(255, 215, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-member-photo-placeholder {
    color: #2ab7a9;
    font-size: 4rem;
}

.team-member h4 {
    color: #333;
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.team-member p.role {
    color: #2ab7a9;
    font-weight: 600;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.team-member p.team-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.social-links a {
    color: #666;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f9f9f9;
}

.social-links a:hover {
    color: #2ab7a9;
    background: rgba(42, 183, 169, 0.1);
    transform: translateY(-3px);
}

/* Botões de navegação do carrossel */
.team-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #ffd700;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-carousel-btn:hover {
    background: #ffd700;
    transform: translateY(-50%) scale(1.1);
    border-color: #ffd700;
}

.team-carousel-btn:hover svg {
    stroke: white;
}

.team-carousel-btn svg {
    stroke: #ffd700;
    transition: stroke 0.3s ease;
}

.team-carousel-btn-prev {
    left: 0;
}

.team-carousel-btn-next {
    right: 0;
}

.team-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.team-carousel-btn:disabled:hover {
    transform: translateY(-50%);
    background: white;
    border-color: #ffd700;
}

.team-carousel-btn:disabled:hover svg {
    stroke: #ffd700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: #2ab7a9;
    margin-bottom: 1rem;
    display: inline-block;
}

.value-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .team-carousel-wrapper {
        padding: 0 50px;
    }
    
    .team-member {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 3rem 1rem;
    }
    
    .about-section {
        padding: 1.5rem;
    }
    
    .team-carousel-wrapper {
        padding: 0 50px;
    }
    
    .team-member {
        flex: 0 0 100%;
    }
    
    .team-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .team-carousel-wrapper {
        padding: 0 40px;
    }
    
    .team-member {
        padding: 1.5rem 1rem;
    }
    
    .team-member-photo {
        width: 120px;
        height: 120px;
    }
    
    .team-member-photo-placeholder {
        font-size: 3rem;
    }
    
    .team-member h4 {
        font-size: 1.2rem;
    }
}