/* =========================================================
   WHATSAPP — OMG TÊXTIL
========================================================= */

/*
|--------------------------------------------------------------------------
| BOTÃO DENTRO DO MENU MOBILE
|--------------------------------------------------------------------------
*/

.mobile-menu-whatsapp {
    display: none;
}

/*
|--------------------------------------------------------------------------
| BOTÃO FLUTUANTE
|--------------------------------------------------------------------------
*/

.whatsapp-flutuante {
    position: fixed;
    z-index: 950;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    box-shadow:
        0 12px 32px rgba(15, 23, 42, 0.22),
        0 5px 14px rgba(37, 211, 102, 0.25);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.whatsapp-flutuante:hover {
    background: #1fbd5a;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow:
        0 16px 38px rgba(15, 23, 42, 0.25),
        0 7px 18px rgba(37, 211, 102, 0.3);
}

.whatsapp-flutuante:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.28);
    outline-offset: 4px;
}

.whatsapp-flutuante svg {
    display: block;
    flex: 0 0 auto;
}


/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 991px) {

    /*
    |--------------------------------------------------------------------------
    | RODAPÉ DO MENU
    |--------------------------------------------------------------------------
    */

    .mobile-menu-footer {
        display: grid;
        gap: 11px;
    }

    /*
    |--------------------------------------------------------------------------
    | WHATSAPP NO MENU
    |--------------------------------------------------------------------------
    */

    .mobile-menu-whatsapp {
        display: flex;
        min-height: 72px;
        align-items: center;
        gap: 12px;
        padding: 13px 15px;
        border: 1px solid rgba(37, 211, 102, 0.22);
        border-radius: 14px;
        background: rgba(37, 211, 102, 0.09);
        color: #176c38;
        text-decoration: none;
        transition:
            background-color 0.2s ease,
            transform 0.2s ease;
    }

    .mobile-menu-whatsapp:hover {
        background: rgba(37, 211, 102, 0.15);
        color: #176c38;
        text-decoration: none;
        transform: translateY(-1px);
    }

    .mobile-menu-whatsapp-icon {
        display: inline-flex;
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        align-items: center;
        justify-content: center;
        border-radius: 11px;
        background: #25d366;
        color: #ffffff;
    }

    .mobile-menu-whatsapp-icon svg {
        display: block;
    }

    .mobile-menu-whatsapp-text {
        display: block;
        min-width: 0;
        flex: 1;
    }

    .mobile-menu-whatsapp-text strong {
        display: block;
        color: #176c38;
        font-size: 14px;
        line-height: 1.3;
    }

    .mobile-menu-whatsapp-text small {
        display: block;
        margin-top: 2px;
        color: #588068;
        font-size: 10px;
        line-height: 1.35;
    }

    .mobile-menu-whatsapp-arrow {
        flex: 0 0 auto;
        color: #25a954;
        font-size: 17px;
    }

    /*
    |--------------------------------------------------------------------------
    | BOTÃO FLUTUANTE MOBILE
    |--------------------------------------------------------------------------
    */

    .whatsapp-flutuante {
        right: 16px;
        bottom: 18px;
        width: 54px;
        min-height: 54px;
        padding: 0;
        border-width: 2px;
        border-radius: 50%;
    }

    .whatsapp-flutuante-texto {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    body.mobile-menu-open .whatsapp-flutuante {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: scale(0.85);
    }
}

/*
|--------------------------------------------------------------------------
| CELULARES COM ÁREA SEGURA
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 480px) {

    .whatsapp-flutuante {
    position: fixed;
    z-index: 950;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    box-shadow:
        0 12px 32px rgba(15, 23, 42, 0.22),
        0 5px 14px rgba(37, 211, 102, 0.25);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}