
#quem-somos p {
    font-size: 1.4em;
    line-height: 1.9em;
    color: #4e4e4e;
}


.parallax {
    background-image: url("/img/bolo-laranja.jpeg");
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}


.link-address, .link-address:hover {
    color: #333333;
    text-decoration: none;
    font-size: 1.4em;
    line-height: 1.9em;
}

h4.main-title {
    font-size: 1.9em;
}

/* Botão WhatsApp */
.whats-content{
    position: fixed;
    z-index: 12;
    bottom: 1.5em;
    right: 1.5em;
}

.whats-content-text{
    position: fixed;
    z-index: 12;
    bottom: 4.5em;
    right: 0.5em;
}

.whats-text{
    background-color: #FFF0DF;
    border-radius: 20px;
    padding: 8px;
    color: #300903;
}
.whats-text i {
    color: #DF9877;
}

.whats-button{
    height: 3.5em;
    border-radius: 30px;
    border: unset;
    width: 3.5em;
    background-color: #009622;
    transition: background-color .3s;
    transform: scale(1);
    animation: pulse 2s infinite;
}
.whats-button .fa-whatsapp{
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.7em;
    color: white;
}
.whats-button:hover{
    background-color: #01711a;
}
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(1, 113, 26, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@media (max-width: 992px) {
    .loja, .cafe {
        margin-top: 1em;
    }

    .cafe {
        margin-top: 1.5rem;
    }
}

