﻿/*FOOTER*/
.footer {
    background-color: #2c444f;
}


/* Font global en la caja y botón */
.whatsapp-float-btn,
.whatsapp-chat-box {
    font-family: 'Poppins', sans-serif;
}

/* Botón flotante de WhatsApp */
.whatsapp-float-btn {
    position: fixed;
    opacity: 0.8;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px; 
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    font-size: 1.5rem; 
    transition: background-color 0.3s;
}

    .whatsapp-float-btn:hover {
        background-color: #20b957;
    }

/* Caja de chat */
.whatsapp-chat-box {
    position: fixed;
    bottom: 90px; 
    right: 20px;
    width: 300px; 
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 9000;
    font-size: 0.9rem; 
}

.whatsapp-header {
    background-color: #25d366;
    color: #fff;
    padding: 10px;
}

.whatsapp-body {
    padding: 10px;
}

.whatsapp-footer {
    padding: 10px;
    background-color: #f1f1f1;
}

.d-none {
    display: none !important;
}

@media (max-width: 576px) {
    .whatsapp-float-btn {
        width: 30px;
        opacity: 0.8;
        height: 30px;
        font-size: 1.1rem;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-chat-box {
        width: 90%; 
        bottom: 60px; 
        right: 10px;
        font-size: 0.7rem;
    }
}