.btn-suporte {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: transparent;
    color: #00AEEF; /* Azul da marca */
    border: 2px solid #00AEEF;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-suporte:hover {
    background-color: #00AEEF;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.4);
    transform: translateY(-2px);
}