.btn-modified{
    display: flex;
    gap: 2px;
}

@media screen and (max-width:480px) {
    .btn-modified {
        gap: 1rem;
    }
}
.btn-whatsapp2 {
    background-color: #25D366; 
    text-wrap: nowrap;
}


.btn-whatsapp2:hover {
    background-color: #1EBE57; /* Verde más oscuro */
    
}

.btn-whatsapp2 i {
    font-size: 20px;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    z-index: 9999;
    background-color: #25D366; /* Color verde de WhatsApp */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1); /* Efecto hover para agrandar el botón */
}

.whatsapp-button img {
    width: 32px; /* Ajusta el tamaño del icono */
    height: 32px;
}

@media screen and (max-width: 989px) {
    .whatsapp-button {
        bottom: 78px;
        right: 13px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-button img {
        width: 30px; /* Ajusta el tamaño del icono */
        height: 30px;
    }
}