/* Estilos para el listado de facilitadores */
.facilitadores-filter {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.facilitadores-filter label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1f36;
}

.facilitadores-filter select {
    width: 100%;
    max-width: 300px;
    padding: 0.5rem;
    border: 1px solid #e5e9f2;
    border-radius: 6px;
    background-color: white;
    font-size: 0.9rem;
}

.facilitadores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.facilitador {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.facilitador:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.facilitador img {
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #f8f9fa;
}

.facilitador-name {
    font-size: 1.25rem;
    color: #1a1f36;
    margin: 0.5rem 0;
}

.facilitador-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #367c87;
    margin: 0.5rem 0;
}

.facilitador-email img {
    width: 50px;
    height: 50px;
    margin: 0;
}

.facilitador-bio {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 1rem;
}

.facilitador a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #367c87;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    margin-top: auto;
}

.facilitador a:hover {
    background-color: #2e656f;
}

/* Responsive */
@media (max-width: 768px) {
    .facilitadores-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .facilitador {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .facilitadores-grid {
        grid-template-columns: 1fr;
    }
}
