/**
 * Site Generator - Sticky Bar Móvil.
 *
 * Barra fija en la parte inferior en dispositivos móviles
 * con botones de Llamar y WhatsApp.
 */

.sitegen-sticky-bar {
    display: none;
}

@media (max-width: 768px) {
    .sitegen-sticky-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        display: flex;
        background: #ffffff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.12);
        padding: 0;
        border-top: 1px solid #e0e0e0;
    }

    .sitegen-sticky-bar__btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: opacity 0.2s;
    }

    .sitegen-sticky-bar__btn:hover {
        opacity: 0.9;
    }

    .sitegen-sticky-bar__btn svg {
        flex-shrink: 0;
    }

    /* Botón Llamar */
    .sitegen-sticky-bar__btn--phone {
        background: var(--sitegen-sticky-color, #2B5EA7);
        color: #ffffff;
    }

    .sitegen-sticky-bar__btn--phone:hover {
        color: #ffffff;
    }

    /* Botón WhatsApp */
    .sitegen-sticky-bar__btn--whatsapp {
        background: #25D366;
        color: #ffffff;
    }

    .sitegen-sticky-bar__btn--whatsapp:hover {
        color: #ffffff;
    }

    /* Compensar el espacio del sticky bar en el body */
    body.has-sitegen-sticky-bar {
        padding-bottom: 56px;
    }
}
