#whats-fixo{
    background-color: #25D366;
    height: 60px;
    width: 60px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* sombra leve */
    animation: pulsar 2s infinite; /* animação infinita */
    z-index: 999;
}

.slider .slide__title {
    font-size: 65px !important;
    line-height: 70px !important;
}

.btn-whatsapp-banner{
    background-color: #25D366;
    color: white;
    max-width: 400px;
    width: 100%;
    font-size: 18px;
    text-transform: uppercase;
}

.btn-whatsapp-banner:hover{
    background-color: #2aaf5c !important;
    color: white;
}

.btn-whatsapp-banner svg{
    margin-right: 10px;
    width: 25px;
}

@media (max-width: 767px){
    .slider .slide__title {
        font-size: 45px !important;
        line-height: 45px !important;
    }
}

/* Animação pulsar */
@keyframes pulsar {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
}