@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Modak&family=Poppins:wght@400;500;600;700;800;900&display=swap');
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button {
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.my-float {
    color: white;
    font-size: 24px;
}

.circle-anime {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(37, 211, 102, 0.5);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    top: -5px;
    left: -5px;
    z-index: -1;
}

@keyframes pulse {
    0% {
    transform: scale(0.9);
    opacity: 1;
    }
    100% {
    transform: scale(1.5);
    opacity: 0;
    }
}

.popup-whatsapp {
    display: none;
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transition: all 0.3s;
}

.content-whatsapp.-top {
    padding: 10px;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
}

.content-whatsapp.-bottom {
    padding: 10px;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
}

.whats-input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

.send-msPopup {
    background-color: #25D366;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 1000;
}

.send-msPopup:hover {
    background-color: #1EBE57;
}

.closePopup {
    background-color: #0a6402;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    cursor: pointer;
    margin-left: 7px;
    transition: background-color 0.3s;
    z-index: 5;
}

.closePopup:hover {
    background-color: #520303;
    color: white;
    z-index: 6;
}