#contact-widget {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
}

.contact-button {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background-color: #fff;
    background-image: url('https://scubapro.lifeandive.com/wp-content/uploads/2025/10/icono-whatsapp-1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 45%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
    padding: 0;
}

.contact-options {
    position: absolute;
    bottom: 20px;
    right: 0px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 220px;
}

.contact-options.hidden {
    display: none;
}

.contact-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.contact-link:hover {
    background: #f0f0f0;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}
