.team-role {
    font-size: 1.1rem;
    color: #007bff;
    margin-bottom: 10px;
    text-align: center; /* Centrar el texto */
}

.team-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 100%;
    max-width: 200px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #007bff;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.team-role {
    font-size: 1.1rem;
    color: #007bff;
    margin-bottom: 10px;
}

.team-bio {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .team-card {
        padding: 15px;
    }

    .team-photo {
        max-width: 150px;
    }

    .team-name {
        font-size: 1.3rem;
    }

    .team-role {
        font-size: 1rem;
    }

    .team-bio {
        font-size: 0.9rem;
    }
}
