@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');


:root {
    --yellow: #ffcc00;
    --blue: #4183d7;
    --white: #fff;
    --light-color: #666;
    --border: .2rem solid var(--black);
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}

body {
    margin: 0;
}


/* .navbar {
	margin-bottom: 0;
	background-color: #ffcc00;
	z-index: 9999;
	border: 0;
	font-family: "Bebas Neue";
	font-size: 20px !important;
	line-height: 1.42857143 !important;
	letter-spacing: 4px;
	border-radius: 0;
}

.navbar li a, .navbar .navbar-brand {
	color: #4183d7 !important;
}

.navbar-nav li a:hover, .navbar-nav li.active a {
	color: #4183d7 !important;
	background-color: #fff !important;
}

.navbar-default .navbar-toggle {
	border-color: transparent;
	color: #4183d7 !important;
}

.navbar-brand {
	padding-top: 6px;
	padding-bottom: 0px;
}
.navbar-brand img {
	height: 40px;
	width: auto;
} */

.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffcc00;
    /* box-shadow: var(--box-shadow); */
    z-index: 1000;
    height: auto;
}

.header .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0px 20px;
    height: 100%;
}

.header .flex .logo img {
    height: 40px;
    width: auto;
}

.header .flex .navbar {
    font-family: "Bebas Neue";
    font-size: 20px !important;
    /* line-height: 1.42857143 !important; */
    letter-spacing: 4px;
    padding-top: 24px;
}

.header .flex .navbar a {
    margin-left: 20px;
    color: var(--blue);
}

.header .flex .navbar a:hover {
    text-decoration: underline;
    color: var(--blue);
}

#menu-btn {
    display: none;
    font-size: 2.5rem;
    color: var(--blue);
    cursor: pointer;
}


.jumbotron {
    background: #ffcc00 url(img/bg_pontos.png) no-repeat;
    background-position: center center;
    padding: 70px 60px;
    margin-bottom: 0px;
}

.container-simples {
    padding: 30px 30px;
}

.container-duplo {
    font-family: "Bebas Neue";
    padding-top: 0px;
    padding-bottom: 0px;
}

.container-duplo .atracao {
    padding-top: 50px;
    padding-bottom: 10px;
}

.container-duplo h2 {
    font-size: 46px;
}

.container-duplo h4 {
    font-size: 28px;
}

.container-duplo h5 {
    font-size: 22px;
}

.container-duplo h6 {
    font-size: 20px;
    margin-top: 20px;
}

.bg-vermelho {
    background: #b22323 url(img/bg_pontos.png) no-repeat;
    background-position: center top;
    color: #fff;
}

.bg-roxo {
    background: #8523b2 url(img/bg_pontos.png) no-repeat;
    background-position: center top;
    color: #fff;
}

.bg-verde {
    background: #127c21 url(img/bg_pontos.png) no-repeat;
    background-position: center top;
    color: #fff;
}

.bg-azul {
    background: #2363b2 url(img/bg_pontos.png) repeat-y;
    background-position: center top;
    color: #fff;
}

.bg-azul-simples {
    background: #2363b2;
    color: #fff;
}

.bg-cinza-simples {
    background: #f6f6f6;
    color: #000;
}

.balao {
    padding-bottom: 30px;
    font-size: 30px;
}

.balao img {
    width: 200px;
    height: auto;
}

table.programacao td {
    vertical-align: middle !important;
}

table.programacao th {
    text-transform: uppercase;
}

table.programacao .icone img {
    width: auto;
    height: 40px;
}

.box {
    font-size: 16px;
}

.box h1 {
    font-family: "Bebas Neue";
    font-size: 50px !important;
}

.box h2 {
    font-family: "Bebas Neue";
    font-size: 30px !important;
    margin-bottom: 0px;
}

.box h3 {
    font-family: "Bebas Neue";
    font-size: 25px !important;
    margin: 60px 0 20px 0;
}

#contato .row {
    padding-top: 10px;
    padding-bottom: 10px;
}




@media (max-width:768px) {

    #menu-btn {
        display: inline-block;
        transition: .2s linear;
    }

    #menu-btn.fa-times {
        transform: rotate(180deg);
    }

    .header .flex .logo img {
        height: 30px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .header .flex .navbar {
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        background-color: #ffcc00;
        border-top: var(--border);
        border-bottom: var(--border);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: .2s linear;
    }

    .header .flex .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .header .flex .navbar a {
        display: block;
        margin: 15px 20px;
    }

}