* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f0f2f5;
    color: #333;
    padding: 40px 20px;
    line-height: 1.6;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

header h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.directorio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.asesor {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.asesor:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.icono {
    background: transparent; 
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.icono img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.info h2 {
    font-size: 1.25rem;
    margin-bottom: 25px; 
    color: #2d3748;
    font-weight: 700;
}

.btn-asesor {
    display: inline-block;
    background-color: #569350; 
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease;
    text-decoration: none; 
}

.btn-asesor:hover {
    background-color: #457540; 
}

@media (max-width: 480px) {
    .directorio-grid{
        grid-template-columns: 1fr;
    }
    header h1 {
        font-size: 1.8rem;
    }
}