/* Estilos generales del botón flotante de WhatsApp */
.wa-float-btn-9e3d0d3f {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    transition: all 0.3s ease;
}

/* Manejo del Admin Bar de WordPress para usuarios identificados */
body.admin-bar .wa-float-btn-9e3d0d3f {
    /* El botón flotante inferior no suele solaparse con el admin bar que está arriba,
       pero mantenemos un z-index adecuado para evitar que tape menús superiores de administración */
    z-index: 99998;
}

.wa-icon-9e3d0d3f {
    display: block;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.wa-text-9e3d0d3f {
    white-space: nowrap;
}

/* Animación y efectos */
.wa-float-btn-9e3d0d3f:hover {
    background-color: #128c7e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.wa-float-btn-9e3d0d3f:hover .wa-icon-9e3d0d3f {
    transform: scale(1.15) rotate(5deg);
}

/* Responsividad para móviles (colapsar texto para optimizar espacio) */
@media screen and (max-width: 480px) {
    .wa-float-btn-9e3d0d3f {
        bottom: 20px;
        right: 20px;
        padding: 12px;
        border-radius: 50%;
    }
    .wa-text-9e3d0d3f {
        display: none;
    }
}
