/* CSS RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Pocket Trap Styles */
html,
body {
    width: 100vw;
    overflow-x: hidden;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    /* font-weight:  900; */
    font-family: 'Bebas Neue', cursive;
}

h1 {font-size: 3em;}
h2 {font-size: 2.5em;}
h3 {font-size: 2em;}
h4 {font-size: 1.6em;}
h5 {font-size: 1.4em;}
h6 {font-size: 1.2em;}

p {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
}

.text-white {
    color: white;
    text-shadow: 1px 1px 1px black;
}

img {
    width: 100%;
    height: auto;
}

strong {
    font-weight: 600;
}

.sec {
    padding: 60px 15px;
    background-size: auto 100vh;
    position: relative;
	max-height: 100vh;
}
@media screen and (min-width: 600px) {
    .sec {
        padding: 100px 0;
    	background-size: cover;
    }

    .sec-200 {
        padding: 200px 0;
    }

    .sec-100 {
        padding: 100px 0;
    }

    .sec-50 {
        padding: 50px 0;
    }
}

.bg-fixed {
    background-attachment: fixed;
    background-position: center;
}

.sec:nth-child(even) {
    background-color: #ddd;
}

.sec-vid {
    overflow: hidden;
}

.sec video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: auto;
}

@media screen and (min-width: 600px) {
    .sec video {
        max-width: 100vw;
    }
}

.sec-img {
    position: relative;
    max-width: 600px;
}

@media screen and (min-width: 600px) {
    .sec-img {
        position: absolute;
    }

    .img-middle {
        top: 50%;
        transform: translateY(-50%);
    }

    .img-bottom {
        bottom: 0;
    }
}

.sec-text {
    position: relative;
    z-index: 20;
}

.sec-text ul {
    list-style: disc;
    padding-left: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-gap: 10px;
    align-items: center;
}
@media screen and (min-width: 600px) {
    .grid {
        grid-gap: 30px;
    }
}

.grid-1,
.grid-2,
.grid-3,
.grid-650 {
    grid-template-columns: 1fr;
    justify-content: center;
}

@media screen and (min-width: 600px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);   
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }    

    .grid-650 {
        grid-template-columns: 650px;
        justify-content: center;
    }
}

.g-mbl-order-1 {order: 1;}
.g-mbl-order-2 {order: 2;}
.g-mbl-order-3 {order: 3;}
.g-desk-order-1 {order:initial;}
.g-desk-order-2 {order:initial;}
@media screen and (min-width: 600px) {
    .g-mbl-order-1 {order: initial}
    .g-mbl-order-2 {order: initial}
    .g-mbl-order-3 {order: initial}

    .g-desk-order-1 {order:1;}
    .g-desk-order-2 {order:2;}
}

.btn {
    display: inline-block;
    position: relative;
    background-color: black;
    border-radius: 50px;
    margin-top: 20px;
    padding: 15px 30px;
    color: white;
    font-family: 'Bebas Neue';
    font-size: 1.2em;
    transition: all .5s;
    line-height: 1;
}

.btn:hover {
    background-color: #ff0060;
}

.sec-btn {
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

@media screen and (max-width: 600px) {
    .bg-color {
        background: rgba(0,0,0,0.6) !important;
    }
}

.bg-color {
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


/* Menu Topo */
.top-menu {
    background-color: #222;
    color: white;
    text-align: center;
}

.top-menu .grid-3,
footer .grid-3 {
    grid-template-columns: 1fr;
}
@media screen and (min-width: 600px) {
    .top-menu .grid-3,
    footer .grid-3 {
        grid-template-columns: 1fr 300px 1fr;
    }
}

.logo {
    text-align: center;
}

.logo img {
    max-width: 200px;
    margin-bottom: -40px;
}
@media screen and (min-width: 600px) {
    .logo img {
        max-width: 300px;
        margin-bottom: 0;
    }
}

.nav-menu li,
.social-menu li {
    display: inline-block;
}

.nav-menu,
.social-menu {
    text-align: center;
}

.social-menu {
    margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
    .nav-menu {
        text-align: right;
    }

    .social-menu {
        text-align: left;
        margin-bottom: 0;
    }
}

.nav-menu li a,
.social-menu li a {
    color: white;
    opacity: .6;
    font-weight: 600;
    font-size: 1.4em;
    padding: 0 10px;
}

.nav-menu li:hover a,
.social-menu li:hover a {
    opacity: 1;
}

nav .menu .current-menu-item a {
    color: #ff0060;
    opacity: 1;
}

/* Seções */
.sec h2 {
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
    line-height: 1.2;
}

.sec .sec-title {
    text-align: center;
    margin-bottom: 50px;
}

.sec .sub-tit {
    margin-top: -20px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.game-banner {
    padding: 0 15px;
}
@media screen and (min-width: 600px) {
    .game-banner {
        padding: 200px 0;
    }
}

/* Listagem de Jogos */
.list-games-sec {
    padding: 50px 0;
}

.list-games {
    margin-bottom: 50px;
    padding: 0 15px;
}
@media screen and (min-width: 600px) {
    .list-games {
        padding: 0;
    }
}

.game {
    display: block;
    overflow: hidden;
    background: black;
    position: relative;
    transition: all .5s;
    
}

.game .bg-gif {
    width: auto;
    min-width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.game .bg-gif:first-of-type {
    opacity: 0.5;
}

.list-games.grid-2 .game,
.list-games.grid-3 .game{
    height: 150px;
}
@media screen and (min-width: 600px) {

    .list-games.grid-2 .game{
        height: 235px;
    }

    .list-games.grid-3 .game{
        height: 150px;
    }
}

.game h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    line-height: 0;
    transition: all .5s;
    color: white;
}

@media screen and (min-width: 600px) {
    .game h1 {
        width: 50%;
    }

    .game h1 img{
        filter: grayscale(1);
        transition: all .5s;
    }

    .game:hover h1 {
        width: 80%;
    }

    .game:hover h1 img {
        filter: grayscale(0);
    }
}

.game:hover .game-img {
    opacity: 0;
}

.logo-jogo {
    text-align: left;
}

footer {
    background-color: #222;
    padding-top: 20px;
}

footer .sub-footer {
    background-color: black;
    color: #333;
    text-align: center;
    padding: 15px 0;
    align-self: baseline;
}

footer .sub-footer p {
    margin-bottom: 0;
}

.sec-store {
    background-color: #222;
}

.sec-store.fixed {
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 30;
}

.store-list {
    padding: 20px 0;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.store-list a {
    padding: 10px 10px 3px 10px;
    border-radius: 5px;
    margin: 0 5px;
    color: white;
    text-transform: uppercase;
    display: inline-block;
    grid-gap: 15px;
    align-items: center;
    font-size: 1.6em;
    font-weight: 700;
}

.store-list img {
    max-width: 30px;
    max-height: 32px;
    filter: invert(1);
}

.btn-steam {
    background-color: #00adee;
}

.btn-nintendoswitch {
    background-color: #e60012;
}

.btn-playstation {
    background-color: #003087;
}

.btn-xbox {
    background-color: #107C10;
}

.btn-gogdotcom {
    background-color: #86328A;
}

.btn-humblebundle {
    background-color: #CC2929;
}

/* embed */
.sec-video {
    background-color: black !important;
}

.embed-responsive {
    padding-bottom: 56.25%;
    position: relative;
    display: block;
    height: 0;
    overflow: hidden;
}

.embed-responsive>* {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Slick */
.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-dots {
    bottom: 10px;
    z-index: 20;
}

.slick-dots li button:before {
    font-size: 14px;
}