#cjw-asesores-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    font-family: inherit;
}

.cjw-asesor-badge {
    position: absolute;
    top: 180px;
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: #ffffff;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
    text-decoration: none;
    pointer-events: auto;
}

.cjw-asesor-left {
    left: 16px;
}

.cjw-asesor-right {
    right: 16px;
    flex-direction: row-reverse;
    text-align: right;
}

.cjw-asesor-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.5px;
    flex: 0 0 auto;
}

.cjw-asesor-icon::before {
    content: "";
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* WhatsApp (logo oficial) en blanco */
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2032%2032%27%3E%3Cpath%20fill%3D%27%23fff%27%20d%3D%27M19.11%2017.62c-.25-.12-1.49-.74-1.72-.83-.23-.09-.4-.12-.57.12-.17.25-.66.83-.81%201-.15.17-.29.19-.54.06-.25-.12-1.04-.38-1.98-1.22-.73-.65-1.22-1.46-1.36-1.71-.14-.25-.02-.38.1-.5.11-.11.25-.29.37-.43.12-.14.17-.25.25-.41.08-.17.04-.31-.02-.43-.06-.12-.57-1.37-.78-1.88-.2-.49-.41-.42-.57-.43l-.48-.01c-.17%200-.43.06-.66.31-.23.25-.87.85-.87%202.07s.89%202.4%201.01%202.57c.12.17%201.74%202.65%204.21%203.71.59.25%201.04.4%201.4.51.59.19%201.12.16%201.55.1.47-.07%201.49-.61%201.7-1.2.21-.59.21-1.1.15-1.2-.06-.1-.22-.16-.47-.28zM16%203c-7.18%200-13%205.82-13%2013%200%202.29.6%204.54%201.74%206.53L3%2029l6.65-1.74A12.94%2012.94%200%200%200%2016%2029c7.18%200%2013-5.82%2013-13S23.18%203%2016%203zm0%2023.6c-2.02%200-4-.54-5.73-1.55l-.41-.24-3.94%201.03%201.05-3.84-.26-.44A10.55%2010.55%200%200%201%205.4%2016C5.4%2010.15%2010.15%205.4%2016%205.4S26.6%2010.15%2026.6%2016%2021.85%2026.6%2016%2026.6z%27/%3E%3C/svg%3E");
}

.cjw-asesor-text {
    font-size: 13px;
    line-height: 1.25;
    color: #111827;
}

@media (max-width: 768px) {
    #cjw-asesores-container {
        inset: auto 0 0 0;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        gap: 10px;
        padding: 0 12px calc(12px + env(safe-area-inset-bottom)) 12px;
    }

    .cjw-asesor-badge {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        max-width: none;
        flex: 1 1 0;
        border-radius: 14px;
        padding: 10px 12px;
    }

    .cjw-asesor-icon {
        width: 38px;
        height: 38px;
    }

    .cjw-asesor-text {
        font-size: 12px;
    }
}

