/* TEAM SECTION */
.team-section {
    background-color: #000;
    padding: 80px 0;
    color: #fff;
    font-family: 'Cinzel', serif; /* Se utiliza Cinzel para dar un aspecto elegante */
    text-align: center;
}

.team-title {
    font-size: 3rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.team-member {
    background-color: transparent;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-4px);
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
    border: 1px solid #333;
    transition: filter 0.3s ease;
}

/* Efecto de brillo cálido monocromático al hacer hover en las fotos de equipo */
.team-member img:hover {
    filter: brightness(1.1) sepia(0.3);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-description {
    font-size: 1rem;
    line-height: 1.4;
    color: #bbb;
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    .team-title {
        font-size: 2.2rem;
    }
    .team-member h3 {
        font-size: 1.3rem;
    }
    .team-description {
        font-size: 0.95rem;
    }
}
