* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #F7F5F7;
}

#header , #footer {
    display: none;
}

#main {
    background: #F7F5F7;
}

#main .center {
    margin: 0 auto;
    width: 100%;
    background: #F7F5F7;
}

.container {
    display: grid;
    place-items: center;
    border-radius: 20px 20px;
    background-color: #FFFFFF;
    box-sizing: border-box;
    margin: 2.5em 8em;
}

.container-figure {
    position: relative;
    width: 100%;
    height: 200px;
}

figure img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.section-title {
    color: #313131;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400; /* Defina o peso da fonte padrão */
    line-height: normal;
    margin: 4em 4em 1em 4em;
}

.section-title strong {
    font-weight: 700; /* Defina o peso da fonte para negrito apenas para a tag strong */
}

.p-container-app {
    color: #313131;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 1em auto;
}

.container-link-apps {
    margin: 29px;
    display: flex;
    justify-content: center;
    gap: 36px;
}

.qrcode:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid black;
    border-bottom: 10px solid transparent;
    right: 45%;
    bottom: -20px;
}

.qrcode {
    display: none; 
    width: fit-content; 
    background: black; 
    padding: 8px; 
    border-radius: 10px; 
    position: absolute; 
    z-index: 9999;
}

/* .container-link-apps > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 64px;
    height: 64px;
}
*/
.container-link-apps > img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.link-play img, .link-app img {
    max-width: 100%;
}

.div-voltar-evento {
    display: flex;
    margin: 40px 0 80px 0;
}

.btn-link.link-container-app {
    font-size: 12px;
    font-weight: 400;
    display: flex;
    width: 240px;
    height: 45px;
    padding: 10px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #737277;
    border: 1px solid #737277;
    border-radius: 5px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .container {
        margin: 2.5em 1.5em;
    }

    .section-title {
        margin: 5em 2em 1em 2em;
        font-size: 24px;
    }

    .btn-link.link-container-app {
        width: 200px;
    }

    .div-voltar-evento {
        margin: 20px 0 50px 0;
    }

    .p-container-app {
        font-size: 12px;
    }

    .qrcode, .option a > svg {
        display: none;
    }

    .option a > img {
        display: flex !important;
    }
    
    .link-play, .link-app {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        background-color: #D9D9D9;
        border: none;
        width: 64px;
        height: 64px;
        border-radius: 5px;
    }
}
