.whatsapp-float-container {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 99999 !important;
    width: 60px !important;
    height: 60px !important;
}

.whatsapp-float {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #25D366 !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.whatsapp-float:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2) !important;
    background-color: #22c15e !important;
}

.whatsapp-float svg {
    width: 32px !important;
    height: 32px !important;
    fill: white !important;
}

/* Modal Styles */
.whatsapp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999;
}

.whatsapp-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.whatsapp-modal-header h2 {
    margin: 0;
    color: #25D366;
    font-size: 1.5em;
}

.whatsapp-modal-close {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #666;
}

.whatsapp-sectors {
    display: grid;
    gap: 10px;
}

.whatsapp-sector {
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
}

.whatsapp-sector:hover {
    background-color: #25D366;
    color: white;
}

@media screen and (max-width: 480px) {
    .whatsapp-modal-content {
        width: 95%;
        padding: 15px;
    }
    
    .whatsapp-sector {
        padding: 12px;
    }
} 