/**
 * Botón Asesor - Estilos Base
 * Estos estilos se combinan con los controles de Elementor
 */

.btn-asesor-wrapper {
    display: block;
}

.btn-asesor {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #2563eb;
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    gap: 15px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    --btn-scale: 1;
    --hover-lift: 8px;
    transform: scale(var(--btn-scale));
}

.btn-asesor:hover {
    transform: scale(var(--btn-scale)) translateY(calc(var(--hover-lift) * -1));
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
    background: #1d4ed8;
}

.btn-asesor:active {
    transform: scale(var(--btn-scale)) translateY(-3px);
}

.btn-text {
    white-space: nowrap;
    padding-right: 5px;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-asesor:hover .btn-icon {
    transform: rotate(-90deg) scale(1.1);
}

.btn-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-asesor {
        font-size: 16px;
        padding: 12px 18px;
        gap: 12px;
    }

    .btn-icon {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .btn-asesor {
        font-size: 14px;
        padding: 10px 15px;
        gap: 10px;
    }

    .btn-icon {
        width: 32px;
        height: 32px;
    }
}

