/* ESTILOS ESPECIFICOS PARA EL EQUIPO (ABANICO 3D) */
.team-section {
    background: linear-gradient(to bottom, #f5f7f2 0%, #d1d5db 100%);
    padding: 80px 8%;
    position: relative;
    overflow: hidden;
}

.team-section .section-title {
    text-align: left;
    max-width: 1100px;
    margin: 0 auto 30px auto;
}

.team-section .section-title h2 {
    font-size: 2.2rem;
    color: #4b5563;
    background: none;
    -webkit-text-fill-color: initial;
    display: block;
    margin-bottom: 0;
}

.team-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background-color: #8c8c8c;
    width: 250px;
    padding: 35px 20px;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.team-photo-wrapper {
    width: 130px;
    height: 130px;
    background: #ffffff;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 700;
}

.team-prof {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 400;
}

.team-cargo {
    font-size: 0.95rem;
    color: #ffffff;
    margin-top: 5px;
}

.team-cargo strong {
    font-weight: 700;
}

@media (max-width: 900px) {
    .team-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .team-section .section-title {
        text-align: center;
    }

    .team-card {
        transform: none !important;
        width: 100%;
        max-width: 300px;
    }
}