/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 17 2026 | 11:07:07 */
/* ============================================
   BOTÓN FLOTANTE WHATSAPP - FICHAS DE VEHÍCULO
   ============================================ */

/* --- Escritorio (≥ 769px): botón flotante --- */
.wav-boton {
    position: fixed;
    right: 20px;
    bottom: 20px;
    margin-bottom: 60px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff !important;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.25;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
    transition: transform .15s ease, box-shadow .15s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 260px;
}

.wav-boton:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .3);
    color: #fff !important;
}

.wav-boton svg {
    width: 40px;
    height: 40px;
    fill: #fff;
    flex: 0 0 auto;
}

/* Texto en dos líneas: <br> tras 'sobre' */
.wav-boton span {
    display: block;
}

/* --- Tablet y móvil (≤ 768px): barra anclada abajo con icono + texto --- */
@media (max-width: 768px) {
    .wav-boton {
        position: fixed;
        left: 0 !important;
        right: 0 !important;
        bottom: 0;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        border-radius: 0;
        padding: 12px 16px;
        gap: 10px;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 14px;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, .15);
        transform: none;
    }

    .wav-boton:hover {
        transform: none;
    }

    .wav-boton svg {
        width: 26px;
        height: 26px;
        flex: 0 0 auto;
    }

    .wav-boton span {
        display: inline;
        flex: 0 1 auto;
        text-align: center;
    }

    .wav-boton span br {
        display: none;
    }
}