body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--main) var(--s-main);
}

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: var(--s-main);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--main);
    border-radius: 20px;
    border: 3px solid var(--s-main);
}

@media (max-width: 768px) {
    .section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        color: var(--text);
        transition: background 0.5s ease;
    }

    /* Backgrounds */
    .first-container {
        background-image: url('../images/double-fortune-background.png');
        background-size: cover;
        background-position: center;
        justify-content: center;
        padding-top: 19rem;

    }

    .second-container {
        background-image: url('../images/bg-02-mobile.png');
        background-size: cover;
        background-position: center;
        align-items: center;
        display: flex;
        justify-content: center;
        padding-top: 3rem;
    }

    .three-container {
        background-image: url('../images/bg-02-mobile.png');
        background-size: cover;
        background-position: center;
        align-items: center;
        display: flex;
        justify-content: center;
        
    }

    .footer {
        background-color: var(--s-main);
        justify-content: space-around;
        color: var(--text);
        padding: 1rem 0;
        padding-top: 2.5rem;
        text-align: center;
    }


    .footer a {
        text-align: center;
        justify-content: center;
        margin-top: 1rem;
        color: var(--text);
        text-decoration: none;
        display: flex;
        align-items: center;
        font-weight: bold;
        color: gray;
    }

    .footer a:hover {
        text-decoration: underline;
    }

    /* Style */
    .title {
        margin-top: 2rem;
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 3rem;
    }

    .description {
        font-size: 1rem;
        color: var(--text);
        text-align: center;
        width: 350px;
        margin: 0 auto;
        line-height: 1.3rem;

    }

    .description2 {
        margin-top: 2.5rem;
        text-align: justify;
        line-height: 1.5rem;

    }

    .description3 {
        margin-top: 2.5rem;
        text-align: center;
        line-height: 2rem;
        font-weight: bold;
        font-size: 1.5rem;
    }

    span {
        font-size: 1.5rem;
        margin-top: 7rem;
        border-radius: 3px;
        background-color: var(--main);
        padding: .2rem .2rem;
        text-align: start;
        animation: highlight 5s infinite alternate;
    }

    .link {
        margin: 0;
        padding: 0;
        padding: 1rem 1rem;
        font-family: "Exo 2", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        color: var(--text);
        text-decoration: none;
        font-weight: bold;
        
    }
    
    .button {
        margin: 0 auto;
        margin-top: 2rem;
        background-color: var(--main);
        border-radius: 5px;
        color: var(--text);
        border: none;
        font-size: 1rem;
        display: flex;
        align-items: center;
        text-align: center;
        box-shadow: 0 0 10px var(--main), 0 0 20px var(--main), 0 0 30px var(--main);

    }

    .button2 {
        margin-top: 2rem;
        background-color: var(--main);
        border-radius: 5px;
        color: var(--text);
        border: none;
        font-size: 1rem;
        display: flex;
        align-items: start;
        text-align: center;
        box-shadow: 0 0 10px var(--main), 0 0 20px var(--main), 0 0 30px var(--main);
    }


    .pulse-button {
        animation: pulse 1.2s infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }

        100% {
            transform: scale(1);
        }
    }

    .pulse-phone {
        animation: pulse 10s infinite;
    }

    .arrow {
        background-image: url(../images/arrow.png);
        background-size: contain;
        width: 80px;
        height: 80px;
        display: flex;
        justify-content: center;
        margin: 0 auto;
        margin-top: 40px;
    }

    .bounce {
        animation: bounce 2s infinite;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-30px);
        }

        60% {
            transform: translateY(-15px);
        }
    }

    .image,
    video {


    }

    .image {
        display: none;
        margin-bottom: 1rem;
    }

    video {
        width: 100%;
        margin: 1rem 0;
    }

    .bi-whatsapp {
        padding: 0 .5rem;
    }

    .celular {
        width: 300px;
        margin: 0 auto;
        display: flex;
    }

}
