/* Botón flotante de WhatsApp - Tema Loomber */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #B49760, #D2AE6D);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(180, 151, 96, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #D2AE6D, #B49760);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(180, 151, 96, 0.6);
    color: #FFF;
}

.whatsapp-float i {
    margin: 0;
    line-height: 60px;
    color: #FFF;
}

/* Animación de pulso con colores del tema */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #B49760, #D2AE6D);
    animation: pulse-loomber 2s infinite;
    z-index: -1;
}

@keyframes pulse-loomber {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Efecto de brillo al pasar el mouse */
.whatsapp-float::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.whatsapp-float:hover::after {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
        transition: bottom 0.3s ease, transform 0.3s ease;
    }
    
    .whatsapp-float i {
        line-height: 50px;
    }
}

/* Ocultar SOLO la barra dorada inferior de Odoo */
.o_footer_copyright,
.o_footer .o_footer_copyright_name,
footer .o_footer_copyright {
    display: none !important;
}

/* Mantener tu footer custom visible */
.loomber-footer {
    display: block !important;
}