 /* ==============================
   ASESOR COMERCIAL INSTITUCIONAL
   ============================== */

body {
    margin: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f5f7fa;
}

/* ===== SECCIÓN ===== */
.asesores-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

/* ===== CONTENEDOR ===== */
.container-asesores {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== ICONO ===== */
.icono-flecha img {
    width: 48px;
    margin-bottom: 24px;
    opacity: 0.85;
}

/* ===== TÍTULO ===== */
.titulo-asesores {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1f2933;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== TARJETA ===== */
.tarjeta {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tarjeta:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* ===== FOTO ===== */
.foto-asesor {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== INFO ===== */
.info-asesor {
    text-align: left;
    flex: 1;
}

.info-asesor h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.info-asesor p {
    margin: 6px 0 16px;
    font-size: 0.95rem;
    color: #6b7280;
}

/* ===== BOTÓN ===== */
.boton-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.boton-whatsapp:hover {
    background-color: #1ebe5d;
    transform: scale(1.03);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .tarjeta {
        flex-direction: column;
        text-align: center;
    }

    .info-asesor {
        text-align: center;
    }
}
