/* =====================================================
   Revelado24 - WhatsApp Simple
   Boton flotante sin flechas ni controles extra
===================================================== */

.r24-ws-simple-button {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 99999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 9px 18px 9px 10px;
    background: #25d366;
    color: #ffffff !important;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .2px;
    text-decoration: none !important;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.r24-ws-simple-button:hover {
    background: #21bf5d;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0,0,0,.22);
}

.r24-ws-simple-button:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.r24-ws-simple-button:focus,
.r24-ws-simple-button:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, .22), 0 14px 30px rgba(0,0,0,.2);
}

.r24-ws-simple-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
}

.r24-ws-simple-icon svg {
    display: block;
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.r24-ws-simple-text {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .r24-ws-simple-button {
        left: 16px;
        bottom: 16px;
        min-height: 54px;
        padding: 8px 15px 8px 9px;
        font-size: 13px;
    }

    .r24-ws-simple-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .r24-ws-simple-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 420px) {
    .r24-ws-simple-button {
        padding: 8px;
        width: 56px;
        height: 56px;
        min-height: 56px;
        justify-content: center;
    }

    .r24-ws-simple-text {
        display: none;
    }

    .r24-ws-simple-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        background: transparent;
    }
}
