@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

:root {
    color-scheme: light only;
    background-color: #fff !important;
    color: #000;
}

@media (prefers-color-scheme: dark) {

    html,
    body {
        background-color: #fff !important;
        color: #000 !important;
    }
}

a {
    text-decoration: none;
}

textarea:focus,
select:focus,
button:focus,
textarea:focus-visible,
select:focus-visible,
button:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    text-decoration: none !important;
}

html,
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

body {
    background-color: #F9F9F9;
    position: relative;
}

.login-screen {
    background-color: #0E2B63 !important;
}

#wrapper {
    width: 100vw;
    max-width: 500px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mapa-scroll {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    position: relative;
    scroll-behavior: smooth;
}

.mapa-conteudo {
    position: relative;
    width: 100%;
    aspect-ratio: 1080 / 3840;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

.mapa2-conteudo {
    position: relative;
    width: 100%;
    aspect-ratio: 1080 / 2880;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

.cafe-caramello {
    background: url(../images/BACKGROUNDS/bg-cafe.svg)no-repeat;
    background-size: contain;
    position: relative;
    transition: all 0.3s ease;
    background-color: #E6F7FF;
}

.posto-e-prosa {
    background: url(../images/BACKGROUNDS/bg-posto-e-prosa.svg)no-repeat;
    background-size: contain;
    position: relative;
    transition: all 0.3s ease;
    background-color: #E6F7FF;
}

.adega-do-pampa {
    background: url(../images/BACKGROUNDS/bg-adega-do-pampa.svg)no-repeat;
    background-size: contain;
    position: relative;
    transition: all 0.3s ease;
    background-color: #E6F7FF;
}

.bandeirantes-mercadao {
    background: url(../images/BACKGROUNDS/bg-bandeirantes-shopping.svg)no-repeat;
    background-size: contain;
    position: relative;
    transition: all 0.3s ease;
    background-color: #E6F7FF;
}

.mare-alta {
    background: url(../images/BACKGROUNDS/bg-mare-alta.svg)no-repeat;
    background-size: contain;
    position: relative;
    transition: all 0.3s ease;
    background-color: #E6F7FF;
}

.caicara-mercadao {
    background: url(../images/BACKGROUNDS/bg-caicara-mercadao.svg)no-repeat;
    background-size: contain;
    position: relative;
    transition: all 0.3s ease;
    background-color: #E6F7FF;
}

.ze-da-praia {
    background: url(../images/BACKGROUNDS/bg-ze-da-praia.svg)no-repeat;
    background-size: contain;
    position: relative;
    transition: all 0.3s ease;
    background-color: #E6F7FF;
}

.camarao-rosa {
    background: url(../images/BACKGROUNDS/bg-camarao-rosa.svg)no-repeat;
    background-size: contain;
    position: relative;
    transition: all 0.3s ease;
    background-color: #E6F7FF;
}

.bar-da-viola {
    background: url(../images/BACKGROUNDS/bg-bar-da-viola.svg)no-repeat;
    background-size: contain;
    position: relative;
    transition: all 0.3s ease;
    background-color: #E6F7FF;
}

.banca-da-dita {
    background: url(../images/BACKGROUNDS/bg-banca-da-dita.svg)no-repeat;
    background-size: contain;
    position: relative;
    transition: all 0.3s ease;
    background-color: #E6F7FF;
}

.venda-do-maneco {
    background: url(../images/BACKGROUNDS/bg-venda-do-maneco.svg)no-repeat;
    background-size: contain;
    position: relative;
    transition: all 0.3s ease;
    background-color: #E6F7FF;
}

.padaria-castanhas {
    background: url(../images/BACKGROUNDS/bg-padaria-castanhas.svg)no-repeat;
    background-size: contain;
    position: relative;
    transition: all 0.3s ease;
    background-color: #E6F7FF;
}

.rede-trevo {
    background: url(../images/BACKGROUNDS/bg-rede-trevo.svg)no-repeat;
    background-size: contain;
    position: relative;
    transition: all 0.3s ease;
    background-color: #E6F7FF;
}

.rancho-da-pamonha {
    background: url(../images/BACKGROUNDS/bg-rancho-da-pamonha.png)no-repeat;
    background-size: contain;
    position: relative;
    transition: all 0.3s ease;
    background-color: #E6F7FF;
}

.venda-do-maneco::before,
.padaria-castanhas::before,
.rede-trevo::before,
.rancho-da-pamonha::before,
.cafe-caramello::before,
.posto-e-prosa::before,
.adega-do-pampa::before,
.bandeirantes-mercadao::before,
.mare-alta::before,
.caicara-mercadao::before,
.ze-da-praia::before,
.camarao-rosa::before, 
.bar-da-viola::before,
.banca-da-dita::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.venda-do-maneco.game-ended::before,
.padaria-castanhas.game-ended::before,
.rede-trevo.game-ended::before,
.rancho-da-pamonha.game-ended::before,
.cafe-caramello.game-ended::before,
.posto-e-prosa.game-ended::before,
.adega-do-pampa.game-ended::before,
.bandeirantes-mercadao.game-ended::before,
.mare-alta.game-ended::before,
.caicara-mercadao.game-ended::before,
.ze-da-praia.game-ended::before,
.camarao-rosa.game-ended::before,
.bar-da-viola.game-ended::before,
.banca-da-dita.game-ended::before {
    background-color: rgba(0, 0, 0, 0.6);
}

.venda-do-maneco>*,
.padaria-castanhas>*,
.rede-trevo>*,
.rancho-da-pamonha>*,
.cafe-caramello>*,
.posto-e-prosa>*,
.adega-do-pampa>*,
.bandeirantes-mercadao>*,
.mare-alta>*,
.caicara-mercadao>*,
.ze-da-praia>*,
.camarao-rosa>*,
.bar-da-viola>*,
.banca-da-dita>* {
    position: relative;
    z-index: 2;
}

.logo-bat {
    background: url(../images/BAT-logo.svg)no-repeat;
    background-size: contain;
    width: 12em;
    height: 6em;
}

.logo-vila {
    background: url(../images/logo-vila.svg)no-repeat;
    background-size: contain;
    width: 12em;
    height: 5em;
}

.logo-conecta {
    background: url(../images/logo-conecta.svg)no-repeat;
    background-size: contain;
    width: 12em;
    height: 9em;
}

.logo-conecta-intro {
    background: url(../images/logo-conecta.svg)no-repeat;
    background-size: contain;
    width: 15em;
    height: 12em;
}

.menu-icon {
    width: 60px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-icon i {
    font-size: 30px;
}

.menu-principal {
    z-index: 99;
}

.menu-secundario {
    background-color: #FFF;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.4);
}

.carousel-indicators {
    border-radius: 30px;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.64);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.64);
}

.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 5px;
    border: none;
    border-top: 0;
    border-bottom: 0;
    background-color: #9E9E9E;
}

.carousel-intro {
    margin-top: 5.5em;
    border-radius: 20px;
}

.indicators-intro {
    border-radius: 0;
    box-shadow: none;
}

.indicators-intro [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin: 3px;
    border: none;
    border-top: 0;
    border-bottom: 0;
    background-color: #9E9E9E;
}

.btn-pular {
    background-color: #004f9f;
    border-radius: 15px;
    color: #FFF;
    font-weight: 600;
    text-align: center;
    margin-top: 1.5em;
    width: 200px;
    padding: 5px;
}

#gameType {
    font-size: 35px;
    font-weight: 600;
}

.modal-dialog.modal-dialog-centered.modal-lg {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

/* AVATAR */
.nickname {
    background-color: #fff;
    width: 600px;
    height: 115px;
    border-radius: 40px;
    margin-top: 25px;
}

.nickname-input {
    width: 100%;
    font-size: 35px;
    text-align: center;
    line-height: 150px;
    height: 100%;
    background: none;
    border: none;
}

.nickname-input:focus {
    background: none;
    border: none;
    outline: 0;
}

.select-avatar {
    color: #0E2B63;
    font-size: 20px;
    font-weight: 700;
}

.fundo-avatar {
    background-color: #fff;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.foto-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.2s ease;
}

.foto-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.fundo-avatar-score img {
    width: 70px;
    height: 70px;
}

.btn-avatar {
    background: url(../images/BUTTONS/btn-confirmar.svg)no-repeat;
    background-size: contain;
    width: 180px;
    height: 66px;
    border: none;
    margin-top: 15px;
}

.btn-avatar:hover {
    background: url(../images/BUTTONS/btn-confirmar-hover.svg)no-repeat;
    background-size: contain;
    width: 180px;
    height: 66px;
    border: none;
    margin-top: 15px;
}

/* INDEX */

.login-index {
    width: 280px;
    height: 450px;
    background-color: #FFF;
    border-radius: 15px;
    margin-top: 10px;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.64);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.64);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.input-index {
    width: 240px;
    height: 40px;
    border: none;
    border-bottom: 1px solid #C6C6C6;
    margin: 5px;
    padding: 10px;
}

.btn-login {
    background: url(../images/BUTTONS/btn-login.svg)no-repeat;
    background-size: contain;
    width: 240px;
    height: 50px;
    border: none;
}

.btn-confirma {
    background: url(../images/BUTTONS/btn-confirmar.svg)no-repeat;
    background-size: contain;
    width: 240px;
    height: 80px;
    position: absolute;
    left: 40%;
    bottom: -125px;
    border: none;
}

.btn-confirma:hover {
    background: url(../images/BUTTONS/btn-confirmar-hover.svg)no-repeat;
    background-size: contain;
    width: 240px;
    height: 80px;
    position: absolute;
    left: 40%;
    bottom: -125px;
    border: none;
}

.btn-confirma-perfil {
    background: url(../images/BUTTONS/btn-confirmar.svg)no-repeat;
    background-size: contain;
    width: 160px;
    height: 60px;
    border: none;
}

.btn-confirma-perfil:hover {
    background: url(../images/BUTTONS/btn-confirmar-hover.svg)no-repeat;
    background-size: contain;
    width: 160px;
    height: 60px;
    border: none;
}

.form-auth-small {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* TELA CADASTRO */

.nickname-container {
    width: 300px;
    height: 250px;
    background-color: #FFF;
    border-radius: 15px;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    color: #00B1EB;
}

.nickname-container h3 {
    font-weight: 700;
}

.btn-confirmar-nick {
    background: url(../images/BUTTONS/btn-confirmar-nick.svg)no-repeat;
    background-size: contain;
    width: 230px;
    height: 48px;
    border: none;
}

.tela-cadastro {
    width: 800px;
    height: 480px;
    background-color: #FFF;
    border-radius: 30px;
    margin-top: 10px;
    box-shadow: 4px 4px 8px 2px #727796;
}

.container-branco {
    background-color: #FFF;
    border-radius: 10px;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.4);
}

.btn-cadastro {
    background: url(../images/BUTTONS/btn-fazer-cadastro.svg)no-repeat;
    background-size: contain;
    width: 200px;
    height: 37px;
    border: none;
}

.btn-ja-tenho-cadastro {
    background: url(../images/BUTTONS/btn-ja-tenho-cadastro.svg)no-repeat;
    background-size: contain;
    width: 200px;
    height: 37px;
    border: none;
}

/* PERFIL */

.titulo-perfil {
    color: #00B1EB;
    font-weight: bold;
}

.perfil {
    background: url(../images/avatar2.svg)no-repeat;
    background-size: contain;
    width: 80px;
    height: 80px;
}

.perfil-responsivo {
    height: 100px;
}

.bg-perfil {
    background: url(../images/BACKGROUNDS/BG-PERFIL.svg)no-repeat;
    background-size: contain;
    width: 400px;
    height: 115px;
    top: 10px;
    left: 10px;
}

.foto-perfil {
    margin-top: 14px;
    margin-left: 14px;
}

.foto-perfil img {
    width: 85px;
    height: 85px;
}

.editar-responsivo {
    margin-top: 2rem;
}

.editar-responsivo a {
    margin-top: 6px;
}

.editar-responsivo a,
.alterarResponsivo a {
    color: #000;
    text-decoration: underline;
}

.nome-perfil {
    width: 240px;
    height: 64px;
    top: 5px;
    left: 100px;
}

.btn-voltar {
    background: url(../images/BUTTONS/btn-voltar.svg)no-repeat;
    background-size: contain;
    border: none;
    width: 65px;
    height: 65px;
    cursor: pointer;
}

.btn-voltar-modal {
    background: url(../images/BUTTONS/btn-voltar.svg)no-repeat;
    background-size: contain;
    border: none;
    width: 55px;
    height: 55px;
    transform: translate(0px, 55px);
}

.btn-voltar-jogos {
    background: url(../images/BUTTONS/btn-voltar.svg)no-repeat;
    background-size: contain;
    border: none;
    width: 90px;
    height: 90px;
    right: 20px;
    top: 20px;
}

/* MAPA GERAL */

.menu-campanha {
    width: 365px;
    height: 123px;
}

.campanha-1 {
    background: url(../images/BACKGROUNDS/bg-campanha-1.svg)no-repeat;
    background-size: contain;
}

.campanha-2 {
    background: url(../images/BACKGROUNDS/bg-campanha-2.svg)no-repeat;
    background-size: contain;
}

.tamanho-responsivo {
    margin-top: 60px;
}

.fase-1-1 .mapa-conteudo {
    background-image: url('../images/BACKGROUNDS/bg-fase-1-1.png');
}

.fase-1-2 .mapa-conteudo {
    background-image: url('../images/BACKGROUNDS/bg-fase-1-2.png');
}

.fase-1-3 .mapa-conteudo {
    background-image: url('../images/BACKGROUNDS/bg-fase-1-3.png');
}

.fase-1-4 .mapa-conteudo {
    background-image: url('../images/BACKGROUNDS/bg-fase-1-4.png');
}

.fase-1-5 .mapa-conteudo {
    background-image: url('../images/BACKGROUNDS/bg-fase-1-5.png');
}

.fase-1-6 .mapa-conteudo {
    background-image: url('../images/BACKGROUNDS/bg-fase-1-6.png');
}

.fase-1-7 .mapa-conteudo {
    background-image: url('../images/BACKGROUNDS/bg-fase-1-7.png');
}

.fase-1-8 .mapa-conteudo {
    background-image: url('../images/BACKGROUNDS/bg-fase-1-8.png');
}

.fase-1 .jogo-1 {
    background: url(../images/MAPS/1.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 15.5%;
    left: 46%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-1-ok {
    background: url(../images/MAPS/1-ok.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 15.5%;
    left: 46%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-2 {
    background: url(../images/MAPS/2.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 25.5%;
    left: 44%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-2-off {
    background: url(../images/MAPS/2-off.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 25.5%;
    left: 44%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-2-ok {
    background: url(../images/MAPS/2-ok.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 25.5%;
    left: 44%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-3 {
    background: url(../images/MAPS/3.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 34%;
    left: 61%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-3-off {
    background: url(../images/MAPS/3-off.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 34%;
    left: 61%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-3-ok {
    background: url(../images/MAPS/3-ok.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 34%;
    left: 61%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-4 {
    background: url(../images/MAPS/4.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 44.5%;
    left: 72%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-4-off {
    background: url(../images/MAPS/4-off.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 44.5%;
    left: 72%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-4-ok {
    background: url(../images/MAPS/4-ok.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 44.5%;
    left: 72%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-5 {
    background: url(../images/MAPS/5.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 36.5%;
    left: 48%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-5-off {
    background: url(../images/MAPS/5-off.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 36.5%;
    left: 48%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-5-ok {
    background: url(../images/MAPS/5-ok.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 36.5%;
    left: 48%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-6 {
    background: url(../images/MAPS/6.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 23.5%;
    left: 48%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-6-off {
    background: url(../images/MAPS/6-off.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 23.5%;
    left: 48%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-6-ok {
    background: url(../images/MAPS/6-ok.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 23.5%;
    left: 48%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-7 {
    background: url(../images/MAPS/7.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 11%;
    left: 43%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-7-off {
    background: url(../images/MAPS/7-off.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 11%;
    left: 43%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-7-ok {
    background: url(../images/MAPS/7-ok.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 11%;
    left: 43%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-8 {
    background: url(../images/MAPS/8.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 1%;
    left: 54%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-8-off {
    background: url(../images/MAPS/8-off.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 1%;
    left: 54%;
    transform: translate(-50%, -50%);
}

.fase-1 .jogo-8-ok {
    background: url(../images/MAPS/8-ok.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 1%;
    left: 54%;
    transform: translate(-50%, -50%);
}

/* JOGO 01 CAFE CARAMELLO */

.cafe-caramello .temperamento-normal {
    background: url(../images/personagens/murilo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

.cafe-caramello .temperamento-positivo {
    background: url(../images/personagens/murilo-positivo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

.cafe-caramello .temperamento-negativo {
    background: url(../images/personagens/murilo-negativo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

/* JOGO 02 POSTO E PROSA */

.posto-e-prosa .temperamento-normal {
    background: url(../images/personagens/silvana.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 160px;
    height: 200px;
    margin-top: 75px;
}

.posto-e-prosa .temperamento-positivo {
    background: url(../images/personagens/silvana-positiva.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 160px;
    height: 200px;
    margin-top: 75px;
}

.posto-e-prosa .temperamento-negativo {
    background: url(../images/personagens/silvana-negativa.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 160px;
    height: 200px;
    margin-top: 75px;
}

/* JOGO 03 ADEGA DO PAMPA */

.adega-do-pampa .temperamento-normal {
    background: url(../images/personagens/ernesto.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 90px;
}

.adega-do-pampa .temperamento-positivo {
    background: url(../images/personagens/ernesto-positivo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 90px;
}

.adega-do-pampa .temperamento-negativo {
    background: url(../images/personagens/ernesto-negativo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 90px;
}

/* JOGO 04 BANDEIRANTES MERCADÃO */

.bandeirantes-mercadao .temperamento-normal {
    background: url(../images/personagens/murilo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

.bandeirantes-mercadao .temperamento-positivo {
    background: url(../images/personagens/murilo-positivo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

.bandeirantes-mercadao .temperamento-negativo {
    background: url(../images/personagens/murilo-negativo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

/* JOGO 05 MARÉ ALTA */

.mare-alta .temperamento-normal {
    background: url(../images/personagens/katia.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

.mare-alta .temperamento-positivo {
    background: url(../images/personagens/katia-positivo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

.mare-alta .temperamento-negativo {
    background: url(../images/personagens/katia-negativo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

/* JOGO 06 CAIÇARA MERCADÃO */

.caicara-mercadao .temperamento-normal {
    background: url(../images/personagens/rosalia.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

.caicara-mercadao .temperamento-positivo {
    background: url(../images/personagens/rosalia-positivo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

.caicara-mercadao .temperamento-negativo {
    background: url(../images/personagens/rosalia-negativo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

/* JOGO 07 ZÉ DA PRAIA */

.ze-da-praia .temperamento-normal {
    background: url(../images/personagens/ze.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

.ze-da-praia .temperamento-positivo {
    background: url(../images/personagens/ze-positivo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

.ze-da-praia .temperamento-negativo {
    background: url(../images/personagens/ze-negativo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

/* JOGO 08 CAMARÃO ROSA */

.camarao-rosa .temperamento-normal {
    background: url(../images/personagens/rick.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

.camarao-rosa .temperamento-positivo {
    background: url(../images/personagens/rick-positivo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

.camarao-rosa .temperamento-negativo {
    background: url(../images/personagens/rick-negativo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 155px;
    height: 200px;
    margin-top: 55px;
}

/* CAMPANHA 2 */

.fase-2-9 .mapa2-conteudo {
    background-image: url('../images/BACKGROUNDS/bg-fase-2-1.png');
}

.fase-2-10 .mapa2-conteudo {
    background-image: url('../images/BACKGROUNDS/bg-fase-2-2.png');
}

.fase-2-11 .mapa2-conteudo {
    background-image: url('../images/BACKGROUNDS/bg-fase-2-3.png');
}

.fase-2-12 .mapa2-conteudo {
    background-image: url('../images/BACKGROUNDS/bg-fase-2-4.png');
}

.fase-2-13 .mapa2-conteudo {
    background-image: url('../images/BACKGROUNDS/bg-fase-2-5.png');
}

.fase-2-14 .mapa2-conteudo {
    background-image: url('../images/BACKGROUNDS/bg-fase-2-6.png');
}

.fase-2 .jogo-9 {
    background: url(../images/MAPS/1.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 18.5%;
    left: 48%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-9-ok {
    background: url(../images/MAPS/1-ok.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 18.5%;
    left: 48%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-9-off {
    background: url(../images/MAPS/1-off.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 18.5%;
    left: 48%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-10 {
    background: url(../images/MAPS/2.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 31.5%;
    left: 47%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-10-off {
    background: url(../images/MAPS/2-off.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 31.5%;
    left: 47%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-10-ok {
    background: url(../images/MAPS/2-ok.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 31.5%;
    left: 47%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-11 {
    background: url(../images/MAPS/3.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 47%;
    left: 67%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-11-off {
    background: url(../images/MAPS/3-off.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 47%;
    left: 67%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-11-ok {
    background: url(../images/MAPS/3-ok.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    top: 47%;
    left: 67%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-12 {
    background: url(../images/MAPS/4.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 30%;
    left: 81%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-12-off {
    background: url(../images/MAPS/4-off.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 30%;
    left: 81%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-12-ok {
    background: url(../images/MAPS/4-ok.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 30%;
    left: 81%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-13 {
    background: url(../images/MAPS/5.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 14.5%;
    left: 17%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-13-off {
    background: url(../images/MAPS/5-off.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 14.5%;
    left: 17%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-13-ok {
    background: url(../images/MAPS/5-ok.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 14.5%;
    left: 17%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-14 {
    background: url(../images/MAPS/6.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 0%;
    left: 28%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-14-off {
    background: url(../images/MAPS/6-off.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 0%;
    left: 28%;
    transform: translate(-50%, -50%);
}

.fase-2 .jogo-14-ok {
    background: url(../images/MAPS/6-ok.svg)no-repeat;
    background-size: contain;
    width: 4em;
    height: 4em;
    bottom: 0%;
    left: 28%;
    transform: translate(-50%, -50%);
}

/* JOGO 09 BAR DA VIOLA */

.bar-da-viola .temperamento-normal {
    background: url(../images/personagens/dona-beatriz.png)no-repeat;
    background-size: cover;
    background-position: bottom;
    width: 195px;
    height: 272px;
    margin-top: 66px;
}

.bar-da-viola .temperamento-positivo {
    background: url(../images/personagens/dona-beatriz-positivo.png)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 195px;
    height: 272px;
    margin-top: 66px;
}

.bar-da-viola .temperamento-negativo {
    background: url(../images/personagens/dona-beatriz-negativo.png)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 195px;
    height: 272px;
    margin-top: 66px;
}

/* JOGO 10 BANCA DA DITA */

.banca-da-dita .temperamento-normal {
    background: url(../images/personagens/benedita.png)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 255px;
    height: 328px;
    margin-top: 50px;
}

.banca-da-dita .temperamento-positivo {
    background: url(../images/personagens/benedita-positivo.png)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 255px;
    height: 328px;
    margin-top: 50px;
}

.banca-da-dita .temperamento-negativo {
    background: url(../images/personagens/benedita-negativo.png)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 255px;
    height: 328px;
    margin-top: 50px;
}

/* JOGO 11 VENDA DO MANECO */

.venda-do-maneco .temperamento-normal {
    background: url(../images/personagens/manoel.png)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 290px;
    height: 290px;
    margin-top: 66px;
}

.venda-do-maneco .temperamento-positivo {
    background: url(../images/personagens/manoel-positivo.png)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 290px;
    height: 290px;
    margin-top: 66px;
}

.venda-do-maneco .temperamento-negativo {
    background: url(../images/personagens/manoel-negativo.png)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 290px;
    height: 290px;
    margin-top: 66px;
}

/* JOGO 12 PADARIA CASTANHAS */

.padaria-castanhas .temperamento-normal {
    background: url(../images/personagens/pedro.png)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 281px;
    height: 295px;
    margin-top: 66px;
}

.padaria-castanhas .temperamento-positivo {
    background: url(../images/personagens/pedro-positivo.png)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 281px;
    height: 295px;
    margin-top: 66px;
}

.padaria-castanhas .temperamento-negativo {
    background: url(../images/personagens/pedro-negativo.png)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 281px;
    height: 295px;
    margin-top: 66px;
}

/* JOGO 13 REDE TREVO */

.rede-trevo .temperamento-normal {
    background: url(../images/personagens/vanderlei.png)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 270px;
    height: 260px;
    margin-top: 66px;
}

.rede-trevo .temperamento-positivo {
    background: url(../images/personagens/vanderlei-positivo.png)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 270px;
    height: 260px;
    margin-top: 66px;
}

.rede-trevo .temperamento-negativo {
    background: url(../images/personagens/vanderlei-negativo.png)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 270px;
    height: 260px;
    margin-top: 66px;
}

/* JOGO 15 RANCHO DA PAMONHA */

.rancho-da-pamonha .temperamento-normal {
    background: url(../images/personagens/murilo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 300px;
    height: 295px;
    margin-top: 66px;
}

.rancho-da-pamonha .temperamento-positivo {
    background: url(../images/personagens/murilo-positivo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 300px;
    height: 295px;
    margin-top: 66px;
}

.rancho-da-pamonha .temperamento-negativo {
    background: url(../images/personagens/murilo-negativo.svg)no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 300px;
    height: 295px;
    margin-top: 66px;
}

.container-dialogo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* FASE FINAL */
.fase-final {
    display: flex;
    justify-content: center;
    align-items: center;
}

.medalha {
    background: url(../images/medalha.svg)no-repeat;
    background-size: contain;
    width: 220px;
    height: 150px;
}

.uma-estrela {
    background: url(../images/1-estrela.svg)no-repeat;
    background-size: contain;
    width: 105%;
    height: 110px;
}

.duas-estrelas {
    background: url(../images/2-estrelas.svg)no-repeat;
    background-size: contain;
    width: 105%;
    height: 110px;
}

.tres-estrelas {
    background: url(../images/3-estrelas.svg)no-repeat;
    background-size: contain;
    width: 105%;
    height: 110px;
}

.container-estrela {
    background-color: #FFBB00;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    -webkit-box-shadow: 3px 0px 5px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 3px 1px 5px 0px rgba(0, 0, 0, 0.4);
}

.container-estrela p {
    font-size: 15px;
}

.container-estrela b {
    color: #004F9F;
}

.container-pontuacao {
    width: 85%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    -webkit-box-shadow: 3px 0px 5px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 3px 1px 5px 0px rgba(0, 0, 0, 0.4);
    background-color: #0E2B63;
}

.topo-pontuacao {
    background-color: #004F9F;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    color: #FFF;
}

.container-lugar {
    width: 85%;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.4);
}

.fase-final h5 {
    font-size: 1em;
    color: #FFBB00;
    margin-bottom: 0;
}

.pontuacao {
    font-size: 2em;
    font-weight: 900;
    color: #FFBB00;
}

.pontos-lugar {
    font-size: .9em;
    color: #004F9F;
    font-weight: 500;
}

.btn-continuar {
    background: url(../images/BUTTONS/btn-continuar.svg)no-repeat;
    background-size: contain;
    width: 12em;
    height: 3em;
    cursor: pointer;
}

.btn-tentar-novamente {
    background: url(../images/BUTTONS/btn-tentar-novamente.svg)no-repeat;
    background-size: contain;
    width: 12em;
    height: 3em;
    cursor: pointer;
    border: none;
}

.btn-continuar-jogando:hover {
    background-color: #00b0eb !important;
}

/* SCORE */
.titulo-ranking {
    color: #00B1EB;
    font-weight: bold;
}

#linha1 {
    background-color: #00B1EB;
    border-radius: 20px;
    width: 90%;
}

.usuario-ranking {
    width: 75px;
    height: 75px;
}

.usuario-ranking img {
    width: 100%;
    height: 100%;
}

.ranking-geral {
    width: 80%;
    max-height: 450px;
    border-radius: 20px;
    padding: 5px;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.4);
}

/* MODAL */
#gameVideo {
    width: 75vw;
    height: 75vh;
}

#videoModal .modal-dialog {
    max-width: 100% !important;
    margin: 0 !important;
}

#videoModal .modal-body {
    width: 100%;
    height: 100%;
}

.modal-content {
    background: none;
    border: none;
}

.modal-informacoes {
    width: 550px;
    height: 200px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 4px 4px 8px 2px #727796;
}

.modal-informacoes h4 {
    color: #022873;
}

.modal-informacoes h4 {
    font-weight: bolder;
}

.barra-vermelha {
    width: 98%;
    height: 3px;
    background-color: #f25fcb;
}

#stateGameId {
    width: 296px;
    height: 120px;
    border: none;
}

.btn-color {
    background-color: transparent;
    border: none;
}


/* MODAL PROGRESSÃO */

.modal-progressao {
    width: 500px;
    height: 300px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 4px 4px 8px 2px #727796;
}

/* POP UP ERRO */
.titulo-errado {
    color: #f2637e;
    font-size: 2.3rem;
    font-weight: 800;
}

.pop-up-erro {
    width: 850px;
    height: 350px;
    margin-top: 10%;
}

.btn-erro {
    background: url(../images/BUTTONS/BTN-CONTINUAR.svg)no-repeat;
    background-size: contain;
    width: 235px;
    height: 70px;
    bottom: 0;
    border: none;
    cursor: pointer;
}

/* POP UP DICA */
#dicasModal h5,
#cenarioModal h5,
#infoModal h5 {
    color: #00B1EB;
    font-weight: 600;
}

#dicasModal p,
#cenarioModal p,
#infoModal p {
    font-size: 14px;
}

.btn-close-redondo {
    background: url(../images/BUTTONS/btn-close.svg)no-repeat;
    background-size: contain;
    width: 27px;
    height: 27px;
    border: none;
}

.titulo-dica {
    color: #f2637e;
    font-size: 2.3rem;
    font-weight: bold;
}

.barra-laranja {
    width: 98%;
    height: 3px;
    background-color: #f2637e;
}

.pop-up-dica {
    width: 850px;
    height: 320px;
    margin-top: 10%;
}

.bg-pop-up-dica {
    background-color: #FFF;
    border-radius: 20px;
    box-shadow: 4px 4px 8px 2px #727796;
    width: 490px;
    height: 250px;
}

.bg-pop-up-dica h4 {
    font-size: 20px;
    color: #022873;
}

.btn-dica {
    background: url(../images/BUTTONS/BTN-CONTINUAR.svg)no-repeat;
    background-size: contain;
    width: 235px;
    height: 70px;
    bottom: 0;
    border: none;
    cursor: pointer;
}

.btn-sair-azul {
    background: url(../base/BTN-SAIR-AZUL.svg)no-repeat;
    background-size: contain;
    width: 210px;
    height: 70px;
    bottom: 0;
    left: 200px;
    border: none;
    cursor: pointer;
}

/* POP UP ACERTO */
.titulo-certo {
    color: #3339a6;
    font-size: 2.3rem;
    font-weight: 800;
}

.barraAzul {
    width: 98%;
    height: 3px;
    background-color: #f25fcb;
}

.pop-up-acerto {
    width: 850px;
    height: 340px;
    margin-top: 10%;
}

.btn-acerto {
    background: url(../images/BUTTONS/BTN-CONTINUAR.svg)no-repeat;
    background-size: contain;
    width: 235px;
    height: 70px;
    bottom: 0;
    border: none;
    cursor: pointer;
}

/* MODAL GERAL */
.titulo-modal {
    color: #3339a6;
    font-size: 35px;
    font-weight: 800;
}

/* LIGUE OS PONTOS */


.btn-resposta {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #04F2F2;
    border: 5px solid #E5E9EC;
}

/* RESPOSTA RAPIDA */

.div-resposta {
    margin-top: 1.5em;
}

/* ORDEM CERTA */
#sortable {
    margin-top: 1.5rem;
}

.botao-troca {
    display: none;
}

li {
    list-style-type: none;
}

footer img {
    width: 100%;
}

.game1 img {
    width: 95px;
    height: 95px;
    cursor: pointer;
    background-size: contain;
}

footer {
    position: absolute;
    bottom: 0;
    z-index: -1;
}

/* AVATAR */

.dialogo-apresentacao {
    background-color: #c5ebf4;
    width: 100%;
    height: 290px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    z-index: 0;
    overflow: auto;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.40);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.40);
}

.dialogo-pergunta {
    background-color: #c5ebf4;
    width: 100%;
    max-height: 210px;
    min-height: 120px;
    border-radius: 20px;
    display: flex;
    z-index: 0;
    overflow: auto;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.40);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.40);
}

.pt-dialogo-pergunta {
    padding-top: 2.3rem;
}

.dialogo-resposta-certa {
    background-color: #E3F9E1;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    z-index: 0;
    overflow: auto;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.40);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.40);
}

.dialogo-resposta-certa h3 {
    color: #50AF47;
    font-weight: 600;
}

.dialogo-resposta-errada {
    background-color: #FFDBB8;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    z-index: 0;
    overflow: auto;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.40);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.40);
}

.dialogo-resposta-errada h3 {
    color: #EF7D00;
    font-weight: 600;
}

.nome-cliente {
    min-width: 190px;
    background-color: #00b0eb;
    color: #FFF;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    font-size: 1.6em;
    font-weight: 600;
    left: 0;
    transform: translate(0%, -50%) !important;
    -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.63);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.63);
    z-index: 1;
}

.card-slide-resposta {
    min-height: 130px;
    /* max-height: 130px; */
    border-radius: 20px;
    border: none;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.40);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.40);
    margin-bottom: 5px;
    -webkit-overflow-scrolling: touch;
}

#carouselResposta .carousel-item {
    cursor: pointer;
}

.dialogo-resposta {
    overflow: auto;
}

.card-slide-resposta.selecionada {
    border: 3px solid #4CAF50;
    /* background-color: rgba(76, 175, 80, 0.1); */
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* Modal de confirmação */
.modal-confirmacao {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-confirmacao-conteudo {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    margin: 15px;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-confirmacao h3 {
    margin-bottom: 20px;
    color: #333;
}

.modal-confirmacao-botoes {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.btn-confirmar,
.btn-cancelar {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirmar {
    background: #4CAF50;
    color: white;
}

.btn-confirmar:hover {
    background: #45a049;
    transform: scale(1.05);
}

.btn-cancelar {
    background: #007aff;
    color: white;
}

.btn-cancelar:hover {
    background: #007aff;
    transform: scale(1.05);
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* TELA PERFIL */

.tela-perfil {
    background-color: #FFF;
    border-radius: 30px;
    width: 315px;
    height: 160px;
    margin-top: 0;
    box-shadow: 4px 4px 8px 2px #727796;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.fundo-avatar-perfil {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.fundo-avatar-perfil img {
    width: 100%;
    height: 100%;
}

.fundo-nick h2 {
    font-size: 30px;
}

.btn-editar-perfil {
    background: url(../images/BUTTONS/btn-editar.svg)no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
    transform: translate(-65%, -16%);
}

.btn-editar-nickname {
    background: url(../images/BUTTONS/btn-editar.svg)no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
}

/* CONFIGURAÇÕES */
.options-menu {
    background: url(../images/BUTTONS/btn-menu.svg)no-repeat;
    background-size: contain;
    border: none;
    width: 60px;
    height: 60px;
}

.menu-ranking {
    background: url(../images/BUTTONS/btn-ranking.svg)no-repeat;
    background-size: contain;
    width: 60px;
    height: 60px;
}

.menu-perfil {
    background: url(../images/ICONS/icon-perfil.svg)no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
}

.menu-config {
    background-color: #FFF;
}

.right-menu {
    border-radius: 50px;
}

.icon-dica {
    background: url(../images/ICONS/icon-dica.svg)no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
}

.icon-cenario {
    background: url(../images/ICONS/icon-cenario.svg)no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
}

.icon-info {
    background: url(../images/ICONS/icon-info.svg)no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
}

.logo-configuracoes {
    background: url(../images/logo-conecta.svg)no-repeat;
    background-size: contain;
    width: 150px;
    height: 135px;
}

#contentGameConfig a {
    text-decoration: none;
}

.btn-config {
    background-color: #004f9f;
    padding: 5px;
    border-radius: 15px;
    width: 250px;
    text-decoration: none;
    color: #fff;
}

.botao-audio {
    background-size: contain;
    width: 67px;
    height: 33px;
    border: none;
}

.btn-sair {
    background: url(../images/BUTTONS/BTN-LEFT.svg)no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
    border: none;
}

.config-class {
    font-weight: bold;
    margin: 0;
}

/* LOGOUT */

.tela-logout {
    width: 350px;
    height: 150px;
    background-color: #FFF;
    border-radius: 20px;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.4);
}

.bg-log-out {
    width: 450px;
    height: 70px;
    background-color: #fff;
    border-radius: 15px;
    margin-left: auto;
    margin-right: auto;
}

.log-outh-2 {
    font-size: 25px;
    font-weight: bold;
    color: #00B1EB;
}

.btn-cancelar-logout {
    background: url(../images/BUTTONS/BTN-CANCELAR.svg)no-repeat;
    background-size: contain;
    border: none;
    width: 220px;
    height: 80px;
}

.btn-logout {
    background: url(../images/BUTTONS/btn-sair.svg)no-repeat;
    background-size: contain;
    border: none;
    width: 220px;
    height: 80px;
}

.btn-endgame {
    background: url(../images/BUTTONS/BTN-SAIR.svg)no-repeat;
    background-size: contain;
    border: none;
    width: 220px;
    height: 80px;
}

/* CONFIRMAR DONATE */

.tela-doacao {
    width: 490px;
    height: 223px;
    background-color: #FFF;
    border-radius: 20px;
    color: #61172D;
    font-weight: 400;
}

.btn-nao {
    background: url(../images/BUTTONS/BTN-NAO-VERMELHO.svg)no-repeat;
    background-size: contain;
    border: none;
    width: 240px;
    height: 70px;
}

.btn-sim {
    background: url(../images/BUTTONS/BTN-SIM-AZUL.svg)no-repeat;
    background-size: contain;
    border: none;
    width: 240px;
    height: 70px;
}

/* TUTORIAL */

.tutorial-game .img-fluid {
    width: 1050px;
}

#tutorialGame {
    display: block;
    width: 174px;
    height: 55px;
    border: none;
}


.hytPlayerWrap iframe {
    width: 1050px !important;
    zoom: 95% !important;

}

.tutorialResponsivo {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* TELA VIDEO */

.tela-video {
    width: 65%;
    height: 70%;
    background-color: #FFF;
    border-radius: 20px;
}

.play-video {
    background: url(../images/BUTTONS/play-video.svg)no-repeat;
    background-size: contain;
    width: 75px;
    height: 75px;
}

/* BARRA DE ROLAGEM */

html ::-webkit-scrollbar {
    width: 15px;
}

html ::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background: #4882D8;
}

html ::-webkit-scrollbar-track {
    border-radius: 50px;
    background: #004F9F;
}

/* ALTERAR SENHA */

.senha-edit {
    background-color: #fff;
    width: 380px;
    height: 70px;
    border-radius: 20px;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.4);
}

.senha-button img {
    width: 100px;
    height: 100px;
    margin-top: 20px;
}


/* BTN LINK EXTERNO */

.btn-link-externo {
    color: #fff;
    background-color: #0056b1;
    border: none;
    border-radius: 20px;
    margin-top: 10px;
    font-size: 18px;
    padding: 8px;
    box-shadow: 4px 4px 8px 2px #727796;
}

/* ANIMAÇÕES */

.mapa-um-mulher {
    background: url(../images/ANIMAR/1-mulher-flutuando.svg)no-repeat;
    background-size: contain;
    width: 3vw;
    height: 8vh;
    position: absolute;
    left: 35.8%;
    top: 40%;
    --animate-duration: 7s;
}

.mapa-quatro-mulher {
    background: url(../images/ANIMAR/4-mulher-flutuando.svg)no-repeat;
    background-size: contain;
    width: 4vw;
    height: 5vh;
    position: absolute;
    right: 10.5%;
    bottom: 38%;
}

.mapa-quatro-homem-girando {
    background: url(../images/ANIMAR/4-homem-girando.svg)no-repeat;
    background-size: contain;
    width: 4vw;
    height: 8vh;
    position: absolute;
    right: 21%;
    bottom: 29.5%;
    --animate-duration: 3s;
}

.mapa-sete-mulher {
    background: url(../images/ANIMAR/7-mulher-flutuando.svg)no-repeat;
    background-size: contain;
    width: 4vw;
    height: 8vh;
    position: absolute;
    left: 32.2%;
    bottom: 26.39%;
    --animate-duration: 7s;
}

.mapa-sete-homem {
    background: url(../images/ANIMAR/7-homem-flutuando.svg)no-repeat;
    background-size: contain;
    width: 4vw;
    height: 8vh;
    position: absolute;
    left: 36%;
    bottom: 23%;
}

.mapa-oito-nave {
    background: url(../images/ANIMAR/8-nave.svg)no-repeat;
    background-size: contain;
    width: 6vw;
    height: 7vh;
    position: absolute;
    right: 15.8%;
    top: 40%;
}

#carouselResposta {
    touch-action: pan-y;
}

.card-slide-resposta {
    touch-action: pan-y;
    /* prioriza o scroll vertical */
}

/* Setas do carousel */
.carousel-control-prev,
.carousel-control-next {
    width: 25px;
    height: 25px;
    top: 40%;
    transform: translateY(-50%);
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.carousel-control-prev {
    left: -60px;
    /* Fora do card */
}

.carousel-control-next {
    right: -60px;
    /* Fora do card */
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 15px;
    height: 15px;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .carousel-control-prev {
        left: 0px;
    }

    .carousel-control-next {
        right: 0px;
    }
}

@keyframes dicaPiscar {
  0% {
    box-shadow: 0 0 0px 0px rgba(255, 255, 0, 0.7);
    border: 2px solid rgba(255, 255, 0, 0.8);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px 8px rgba(255, 255, 0, 1);
    border: 2px solid rgba(255, 255, 0, 1);
    transform: scale(1.1);
  }
  100% {
    box-shadow: 0 0 0px 0px rgba(255, 255, 0, 0.7);
    border: 2px solid rgba(255, 255, 0, 0.8);
    transform: scale(1);
  }
}

.icon-info.piscando {
  animation: dicaPiscar 1s infinite;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.icon-dica.piscando {
  animation: dicaPiscar 1s infinite;
  border-radius: 50%;
  transition: all 0.2s ease;
}