@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&family=Titillium+Web&display=swap");

:root {
    --font-title: 48px;
    --font-info: 20px;
    --font-sub-title: 24px;
    --font-title-info: 32px;
    --font-sub-title-info: 20px;
    --font-roboto: "Roboto";
    --color-background: #030712;
    --color-font-yellow: #FBC321;
    --color-font-green: #a4b32f;
    --color-font-white-smoke: #A9A9A9;
    --font-titillium: "Titillium Web";
}

* {
    color: var(--color-font-white-smoke);
    margin: 0;
    padding: 0;
}

/*iframes*/
/*Primeval X1*/
iframe.caracteristicasGerais {
    height: 599px;
}
iframe.gameplay {
    height: 2494px;
}
iframe.bosses {
    height: 531px;
}
iframe.loja {
    height: 923px;
}
iframe.eventos {
    height: 1737px;
}

/*Primeval X10*/
iframe.caracteristicasGeraisx10 {
    height: 579px;
}
iframe.gameplayx10 {
    height: 7379px;
}
iframe.bossesx10 {
    height: 1156px;
}

iframe.lojax10 {
    height: 1137px;
}
iframe.eventosx10 {
    height: 1737px;
}

/*Primeval X50*/
iframe.caracteristicasGeraisx50 {
    height: 579px;
}
iframe.gameplayx50 {
    height: 8663px;
}
iframe.bossesx50 {
    height: 1368px;
}
iframe.lojax50 {
    height: 1137px;
}
iframe.eventosx50 {
    height: 1737px;
}
iframe.antibotx50 {
    height: 923px;
}

.checkBoxClassic {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    column-gap: 10px;
    transition: all;
    transition-duration: 0.5s;
}

.checkBoxClassic label {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-shadow: 1px 1px 1px #030712a7;
}

.checkBoxClassic input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid var(--color-font-yellow);
    background: transparent;
    cursor: pointer;
    display: inline-block;
    position: relative;
    border-radius: 4px;
    margin-top: -2px;
}

.checkBoxClassic input[type="checkbox"]:checked {
    background-color: var(--color-font-yellow);
    border-color: var(--color-font-yellow);
}

.checkBoxClassic input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 12px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}


#container_primeval .container_primeval .container_primeval_int .area_primeval .area_primeval_opcoes .opcoes_primeval .opcoes_estilos_primeval {
    max-width: 210px!important;
}

/*header*/
/* Language selector (compact dropdown) */
.language-switcher {
    position: relative;
    display: inline-block;
}
.language-switcher .current {
    display: flex;
    align-items: center;
    column-gap: 8px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    cursor: pointer;
}
.language-switcher .flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}
.language-switcher .options {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 140px;
    background: rgba(3,7,18,0.95);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    padding: 8px 0;
    z-index: 20;
}
.language-switcher:hover .options, .language-switcher:focus-within .options { display: block; }
.language-switcher .option {
    display: flex;
    align-items: center;
    column-gap: 8px;
    padding: 8px 12px;
}
.language-switcher .option:hover { background: rgba(255,255,255,0.06); }

#container_personagens .container_personagens .container_personagens_int .area_personagens .area_card_personagens .card_personagens .card_personagens_int .area_texts_card_personagens .info_caracteristicas {
    width: 100%;
}

nav ul li, nav ul li a {
    font-size: 14px!important;
}

nav ul {
    gap: 20px!important;
}

#container_personagens .container_personagens .container_personagens_int .area_personagens .area_card_personagens {
    align-items: flex-start;
}

.translate-buttons a div {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    padding: 0;
    margin: 0;
    background-color: #fff;
}

.container_menu .container_menu_int .area_menu_total .area_menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    width: 100%;
}

.portugues {
    background: url("../img/Brazil.jpg");
}

.espanhol {
    background: url("../img/Group\ 105.jpg");
}

.ingles {
    background: url("../img/estados-unidos.png");
}

/*cookies popup*/

div#cookie-msg{
    display: none;
}

div#cookie-msg.mostrar {
    z-index: 5;
    display: flex;
    position: fixed;
    bottom: 5%;
    right: 5%;
    width: 550px;
    max-width: 89%;
    row-gap: 25px;
    min-height: 250px;
    flex-direction: column;
    color: var(--color-font-white-smoke);
    background-color: var(--color-background);
    border-radius: 10px;
    border: 2px solid var(--color-font-yellow);
    padding: 30px;
    align-items: baseline;
    justify-content: space-between;
}

.cookie-msg.mostrar .cookie-txt p {
    color: var(--color-font-text);
    font-family: var(--font-titillium);
    font-size: var(--font-sub-title-info);
}

.cookie-msg.mostrar .cookie-txt a {
    text-decoration: underline;
    color: var(--color-font-yellow);
    font-family: var(--font-titillium);
    font-size: var(--font-sub-title-info);
}

div#cookie-msg.cookie-msg.mostrar .cookie-btn p {
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--font-titillium);
    font-size: var(--font-sub-title-info);
    color: var(--color-font-green);
}

div#cookie-msg.cookie-msg.mostrar div.cookie-btn {
    display: flex;
    height: 65px;
    width: 270px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/bg_btn_3.svg);
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

div#cookie-msg.cookie-msg.mostrar .cookie-btn-link {
    display: flex;
    width: 270px;
    height: 65px;
    justify-content: center;
    align-items: center;
}


/*Páginas de termos e questões legais*/

div#legal-page { 
    margin: -100px 0 0 0;
    background-image: url(../img/arte-brabos-club-bg.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

div#legal-page, .legal-page, div#legal-page .cabecalho-legal-page, div#legal-page .cabecalho-legal-page div.menu-nav ol, div#legal-page .content-legal-page {
    display: flex;
}

div#legal-page, div#legal-page .cabecalho-legal-page, .legal-page{
    align-items: center;
}

div#legal-page, .legal-page, div#legal-page .cabecalho-legal-page, div#legal-page .content-legal-page{
    flex-direction: column;
}

.content-legal-page li, div#legal-page .content-legal-page p {
    font-family: var(--font-titillium);
}

.content-legal-page li, div#legal-page .content-legal-page p {
    font-weight: 300;
}

.legal-page {
    justify-content: center;
}

div#legal-page {
    padding: 225px 0 80px 0;
}

.content-legal-page li {
    margin-bottom: 20px;
    list-style: disc;
    margin-left: 26px;
}

.legal-page {
    row-gap: 30px;
    max-width: 1306px;
}

div#legal-page .cabecalho-legal-page {
    margin: 0;
    padding: 0;
    row-gap: 80px;
    align-content: center;
}

div#legal-page h2 {
    text-transform: uppercase;
    font-size: 48px;
    font-family: var(--font-roboto);
    font-weight: bold;
    text-align: center;
}

div#legal-page h3 {
    text-transform: uppercase;
    font-weight: 700;
}

div#legal-page h4, div#legal-page .content-legal-page p, div#legal-page h3, div#legal-page .content-legal-page li{
    font-size: 24px;
}

div#legal-page .content-legal-page{
    border-top: var(--color-font-yellow) 2px solid;
    border-radius: 20px;
    background-color: #030712;
    padding: 55px;
}

div#legal-page .cabecalho-legal-page div.menu-nav ol {
    flex-direction: row;
    column-gap: 35px;
}

.cabecalho-legal-page div.menu-nav li {
    display: inline;
    font-family: var(--font-roboto);
    font-weight: 500;
}

div#legal-page .cabecalho-legal-page div.menu-nav li .active {
    text-transform: uppercase;
    color: var(--color-font-yellow);
}

div#legal-page .content-legal-page {
    row-gap: 30px;
}

/*card home*/

span.new, span.old {
    position: absolute;
    top: 0;
    left: 0;
    width: fit-content;
    border-radius: 9px 0;
    padding: 1px 10px;
    color: #fff;
    font-size: 10px;
}

span.old {
    background-color: green;
}

ul.caracteristicasdopersonagem {
    padding-left: 20px;
}

span.old span {
    color:#FBC321;
}

span.new, #container_primeval span.new {
    background-color: #F91F3E;
}

#container_primeval span.new {
    text-align: center;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    border-radius: 9px 0;
    padding: 3px 10px;
    color: #fff;
    font-size: 10px;
    line-height: 1em;
}

#container_primeval div#date-countdown {
    column-gap: 5px;
    width: 55px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}


.btn_primeval {
    background-color: #030712;
    width: 300px!important;
    max-width: 100%!important;
    border-radius: 10px;
    transition: all ease 200ms;
    transform: scale3d(1, 1, 1);
    transform-origin: bottom;
    cursor: pointer;
}

.btn_primeval_int {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    height: 95px;
    padding: 20px!important;
}

div#date-countdown {
    column-gap: 5px;
    width: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

div#date-countdown p {
    width: 28px;
    display: flex;
    flex-direction: column;
}

b#diasSimples, b#diasSimplesNS, b#diasSimplesX50 {
    color: #fff!important;
    text-align: center;
    font-size: 16px;
    line-height: 1em;
}

.days, .days_NS {
    line-height: 1em;
    display: inline-block;
    font-size: 10px;
    font-weight: 300;
    text-align: center;
    color: #fff;
}

.boxs_brabos, .btn_primeval_int#container_primeval .container_primeval .container_primeval_int .area_primeval .area_btns_primeval .btn_primeval .btn_primeval_int {
    position: relative;
}



#container_home_brabos .container_home_brabos .container_home_brabos_int .area_home_brabos .area_boxs_brabos .boxs_brabos .boxs_brabos_int {
    display: flex;
    align-items: center;
    justify-content: initial;
    width: 100%;
}

/*parcerias page*/

div#parcerias { 
    margin: -100px 0 0 0;
    background-image: url(../img/arte-brabos-club-bg.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

div#parcerias, div#parcerias .content-parceria-page {
    display: flex;
}

div#parcerias{
    row-gap: 50px;
    align-items: center;
}

div#parcerias, div#parcerias .content-parceria-page{
    flex-direction: column;
}

.content-parceria-page li, div#parcerias .content-parceria-page p {
    font-family: var(--font-titillium);
}

.content-parceria-page li, div#parcerias .content-parceria-page p {
    font-weight: 300;
}

.parcerias {
    justify-content: center;
}

div#parcerias {
    padding: 225px 0 80px 0;
}

.content-parceria-page li {
    margin-bottom: 20px;
    list-style: none;
    margin-left: 26px;
}

.content-parceria-page ol.disc li {
    margin-bottom: 20px;
    list-style: disc;
    margin-left: 26px;
}

.parcerias {
    row-gap: 30px;
    max-width: 1306px;
}

div#parcerias h2 {
    text-transform: uppercase;
    font-size: 48px;
    font-family: var(--font-roboto);
    font-weight: bold;
    text-align: center;
}

div#parcerias h3 {
    text-transform: normal;
    font-weight: 700;
}

div#parcerias h4, div#parcerias .content-parceria-page p, div#parcerias h3, div#parcerias .content-parceria-page li, .dstq{
    font-size: 24px;
}

div#parcerias .content-parceria-page{
    border-top: var(--color-font-yellow) 2px solid;
    border-radius: 20px;
    background-color: #030712;
    padding: 55px;
}

div#parcerias .content-parceria-page {
    row-gap: 30px;
}

.dstq {
    display: inline;
    text-transform: none;
    color: var(--color-font-yellow);
    text-decoration: underline;
}


/*primeval x1*/

.info_primeval {
    column-gap: 24px;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}

.title_primeval {
    display: flex;
    row-gap: 30px;
    flex-direction: column;
}

#container_primeval .container_primeval .container_primeval_int .area_primeval {
    padding-top: 100px;
}

#container_primeval .container_primeval .container_primeval_int .area_primeval .area_primeval_opcoes {
    margin-top: 80px;
}

.bottomBox {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    margin-top: 50px;
}


.bottomBox .box {
    display: flex;
    width: 92px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.bottomBox .box h3{
    font-size: 20px;
    font-family: var(--font-roboto);
    text-align: center;
}

.bottomBox .box h3 b{
    color: var(--color-font-yellow);
}

#container_primeval .container_primeval .container_primeval_int .area_primeval .area_primeval_opcoes .area_primeval_opcoes_int .area_texts_primeval_low .sub_title_primeval_low p table thead tr th {
    font-size: 12px;
}

#container_primeval .container_primeval .container_primeval_int .area_primeval .area_primeval_opcoes .area_primeval_opcoes_int .area_texts_primeval_low .sub_title_primeval_low p table tbody tr td {
    padding: 11px 20px;
    font-size: 14px;
}

.bottomBox .box h3 {
    font-size: 20px;
    font-family: var(--font-roboto);
    text-align: center;
    margin: 0;
}

/*rodapé*/

.container_footer div.menu-nav .divisor{
    width: 2px;
    height: 14px;
    background-color: var(--color-font-white-smoke);
    display: inline-block;
}

.container_footer div.menu-nav ol {
    display: flex;
    flex-direction: row;
    column-gap: 15px;
    text-align: center;
}

.container_footer div.menu-nav ol li a {
    text-transform: capitalize;
    font-size: 14px;
}

/*contador New Season*/

div#contadorCompleto_NS {
    align-items: center;
    column-gap: 25px;
}

h3#meses_NS, h3#dias_NS, h3#horas_NS, h3#segundos_NS, h3#minutos_NS{
    font-size: 68px;
    font-weight: 300;
}

 .meses p, .dias p, .horas p, .segundos p, .minutos p {
    font-size: 12px;
}

p.twoPointsDivisor {
    display: flex;
    padding-bottom: 25px;
    font-size: 64px;
    color: var(--color-font-yellow)!important;
}

h3#mensagem_NS {
    font-size: 68px;
    color: var(--color-font-yellow);
    text-transform: uppercase;
}

.hidden {
    display: none;
}

.dstq, a, b, strong {
    display: inline;
    color: var(--color-font-yellow);
}

.primeiraParteGamePlay, .row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.column {
    display: flex;
    flex-direction: column;
}

.RG30 {
    row-gap: 30px;
}

.AIC {
    display: flex;
    align-items: center;
}

.RCW {
    color: #fff;
}

.TAC {
    text-align: center;
}

.cabecalho.column.AIC.RG30 {
    margin-bottom: 100px;
}

.extensiveDate {
    font-size: 20px;
    text-transform: uppercase;
}

#container_personagens {
    background-image: url(../img/personagens_bg_humanos.webp);
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
  }

@media (max-width: 1024px) {

    /*iframes*/
    /*Primeval X1*/
    iframe.caracteristicasGerais {
        height: 764px;
    }
    iframe.gameplay {
        height: 4242px;
    }
    iframe.bosses {
        height: 938px;
    }
    iframe.loja {
        height: 1608px;
    }
    iframe.eventos {
        height: 2744px;
    }

    /*Primeval X10*/
    iframe.caracteristicasGeraisx10 {
        height: 767px;
    }
    iframe.gameplayx10 {
        height: 12427px;
    }
    iframe.bossesx10 {
        height: 2868px;
    }

    iframe.lojax10 {
        height: 2096px;
    }
    iframe.eventosx10 {
        height: 2744px;
    }

    /*Primeval X50*/
    iframe.caracteristicasGeraisx50 {
        height: 799px;
    }
    iframe.gameplayx50 {
        height: 15000px;
    }
    iframe.bossesx50 {
        height: 3523px;
    }
    iframe.lojax50 {
        height: 2181px;
    }
    iframe.eventosx50 {
        height: 1737px;
    }
    iframe.antibotx50 {
        height: 1480px;
    }

    div#legal-page h2, div#parcerias h2 {
        font-size: 32px;
    }

    p.twoPointsDivisor {
        width: 10px;
        font-size: 60px;
    }

    div#contadorCompleto_NS {
        justify-content: center;
    }

    .primeiraParteGamePlay {
        row-gap: 50px;
        flex-direction: column;
    }

    #container_primeval .container_primeval .container_primeval_int .area_primeval .area_primeval_opcoes {
        width: 350px;
        padding: 20px;
    }
    
    /*legal pages*/

    div#legal-page {
        margin: 0px 0 0 0;
        padding: 125px 0 80px 0;
    }

    .legal-page {
        max-width: 100%;
        flex-direction: column;
    }

    div#legal-page .cabecalho-legal-page div.menu-nav ol {
        margin: 0;
        padding: 0;
        row-gap: 20px;
        flex-wrap: wrap;
        flex-direction: row;
        column-gap: 35px;
    }

    div#legal-page .cabecalho-legal-page div.menu-nav li, div.menu-nav li a {
        font-size: 12px;
    }

    div#legal-page .cabecalho-legal-page div.menu-nav ol {
        flex-direction: row;
        justify-content: center;
        column-gap: 15px;
    }

    div#legal-page .content-legal-page {
        max-width: 325px;
        padding: 30px;
    }

    div#legal-page h4, div#legal-page .content-legal-page p, div#legal-page h3, div#legal-page .content-legal-page li {
        font-size: 16px;
    }

    div#legal-page .content-legal-page li {
        margin-left: 16px;
        margin-bottom: 30px;
    }

    /*parcerias*/

    div#parcerias {
        margin: 0px 0 0 0;
        padding: 125px 0 80px 0;
    }

    .parcerias {
        max-width: 325px;
        flex-direction: column;
    }

    div#parcerias .content-parceria-page {
        max-width: 325px;
        padding: 30px;
    }

    div#parcerias h4, div#parcerias .content-parceria-page p, div#parcerias h3, div#parcerias .content-parceria-page li, .dstq {
        font-size: 16px;
    }

    div#parcerias .content-parceria-page li {
        margin-left: 16px;
        margin-bottom: 30px;
    }

    /*rodapé*/

    .container_footer div.menu-nav ol {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 20px;
        column-gap: 20px;
    }

    .container_footer div.menu-nav ol li a {
        font-size: 12px;
    }

    .container_footer div.menu-nav .divisor {
        display: none;
    }

    .bottomBox {
        column-gap: 40px;
    }

    .bottomBox .box h3 {
        font-size: 14px;
    }

    .box {
        row-gap: 10px;
    }

    .box img {
        justify-content: center;
        width: auto;
        height: 50px;
    }

    div#contadorCompleto_NS {
        flex-wrap: wrap;
        column-gap: 10px;
    }

    p.twoPointsDivisor {
        width: 10px;
        font-size: 60px;
    }

    h3#meses_NS, h3#dias_NS, h3#horas_NS, h3#segundos_NS, h3#minutos_NS {
        font-size: 62px;
        font-weight: 300;
    }

    h3#mensagem_NS {
        text-align: center;
        font-size: 32px;
    }

    p.twoPointsDivisor.horas {
        display: none;
    }
}