
#ctaContactBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    background-color: #25D366;
    color: white;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

  
#ctaContactBtn .whatsapp-icon svg {
    display: block;
    transition: transform 0.3s;
}


#ctaContactBtn:hover {
    background-color: #1ebe57;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}


#ctaContactBtn:hover .whatsapp-icon svg {
    transform: rotate(-20deg) scale(1.1);
}

#ctaContactBtn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

#ctaContactBtn .btn-text {
    display: inline-block;
}


@media (max-width: 480px) {
    #ctaContactBtn {
        padding: 10px 16px;
        font-size: 14px;
        gap: 8px;
    }

    #ctaContactBtn .whatsapp-icon svg {
        width: 20px;
        height: 20px;
    }
}