/* Estilos para la sección de equipo */
.team-section {
    padding: 80px 20px;
    text-align: center;
    background: #f8f9fa;
}

.team-titulo {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    font-weight: 700;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 206, 207, 0.2);
}

.team-img {
    margin-bottom: 25px;
}

.team-img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00cecf;
    box-shadow: 0 4px 15px rgba(0, 206, 207, 0.3);
    transition: transform 0.3s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-text {
    text-align: center;
}

.team-nombre {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.team-cargo {
    font-size: 1rem;
    color: #00cecf;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .team-grid {
        gap: 30px;
    }
    
    .team-card {
        min-width: 280px;
        padding: 30px 25px;
    }
    
    .team-img img {
        width: 100px;
        height: 100px;
    }
    
    .team-titulo {
        font-size: 2rem;
    }
}
