.floatSMS {
    display: none;
    position: fixed;
    bottom: 30px;
    margin: auto;
    max-width: 400px;
    background: linear-gradient(135deg, #4f8cff 60%, #6ee7b7 100%);
    color: #fff;
    padding: 18px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: floatSMS-in 0.7s cubic-bezier(.68,-0.55,.27,1.55) forwards;
    z-index: 9999;
}
@media(width > 700px){
    .floatSMS{
        left: 50%;
    }
}


.floatSMS p {
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

@keyframes floatSMS-in {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatSMS-out {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
}

/* Para animar a saída, adicione a classe "hide" via JS */
.floatSMS.hide {
    animation: floatSMS-out 0.5s cubic-bezier(.68,-0.55,.27,1.55) forwards;
}