/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/

@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

@font-face {
	font-family: 'PPTelegraf';
	src: url('../fonts/PPTelegraf-Regular.woff2') format('woff2'),
		url('../fonts/PPTelegraf-Regular.woff') format('woff');
	/* Path to font files */
	font-weight: normal;
	font-style: normal;
}


/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

html[xmlns] .clearfix {
	display: block;
}

* html .clearfix {
	height: 1%;
}

ul,
li {
	padding: 0;
	margin: 0;
	list-style: none;
}

header,
nav,
section,
article,
aside,
footer,
hgroup {
	display: block;
}

* {
	box-sizing: border-box;
}

html,
body {
	font-family: "PPTelegraf", sans-serif;
	font-weight: 400;
	background-color: #000;
	color: #fff;
	font-size: 16px;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0px;
	margin-bottom: 0px;
	font-family: "Anton", sans-serif;
	font-weight: 700;
}

ul {
	margin-bottom: 0px;
}

.container{
	max-width: 1200px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
	background: #000;
	font-family: "PPTelegraf", sans-serif;
	color: #ffffff;
}

::selection {
	background: #006a30;
	color: #fff;
}

::-moz-selection {
	background: #006a30;
	color: #fff;
}

.transition {
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

img{
    width: 100%;
    height: auto;
}

.grid {
	display: grid;
}

.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

@media(max-width: 767px) {
	.flex-col-sm {
		flex-direction: column;
	}
}

.flex-wrap {
	flex-wrap: wrap;
}

/* Justify Content */
.jc-center {
	justify-content: center;
}

.jc-start {
	justify-content: flex-start;
}

.jc-end {
	justify-content: flex-end;
}

.jc-between {
	justify-content: space-between;
}

.jc-around {
	justify-content: space-around;
}

.jc-evenly {
	justify-content: space-evenly;
}

/* Justify Items */
.ji-center {
	justify-items: center;
}

.ji-start {
	justify-items: flex-start;
}

.ji-end {
	justify-items: flex-end;
}

/* //Align Content */
.ac-center {
	align-content: center;
}

.ac-start {
	align-content: flex-start;
}

.ac-end {
	align-content: flex-end;
}

/* Align Items */
.ai-center {
	align-items: center;
}

.ai-start {
	align-items: flex-start;
}

.ai-end {
	align-items: flex-end;
}

.ai-baseline {
	align-items: baseline;
}

.t-left {
	text-align: left;
}

.t-right {
	text-align: right;
}

.t-center {
	text-align: center;
}

.t-justify {
	text-align: justify;
}

.is-mobile {
	display: none;
	visibility: hidden;
}

.section{
	position: relative;
	padding: 128px 0;
}

.gradiente {
	background: rgb(126, 217, 87);
	background: linear-gradient(90deg, rgba(126, 217, 87, 1) 0%, rgba(0, 151, 178, 1) 0%, rgba(126, 217, 87, 1) 100%);
}


.flex1{
	flex: 1;
}

@media (max-width: 991px) {
	html,
	body {
		overflow-x: hidden;
	}
}

a.button {
	font-size: 28px;
	border-radius: 48px;
	padding: 24px 48px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 0.25px;
	display: inline-block;
	background: linear-gradient(to left, #7ed957, #0097b2);
}

a.button:hover {
	background-color: #00b13d;
}

.section-title{
	font-size: 66px;
	line-height: 76px;
	font-style: italic;
	text-transform: uppercase;
}

.subtitle{
	font-size: 22px;
	line-height: 30px;
}

p.text{
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 12px;
}

.c-ralf{
	max-width: 800px;
	margin: 0 auto;
}

@media (max-width: 767px) {
	.section-title{
		font-size: 36px;
		line-height: 46px;		
	}
	
	.section{
		padding: 64px 0;
	}

	a.button {
		font-size: 18px;
		border-radius: 32px;
		padding: 16px 32px;			
	}
}

/* 
---------------------------------------------
header
--------------------------------------------- 
*/
.header-area {
	position: fixed;
	top: 30px;
	left: 0px;
	right: 0px;
	z-index: 100;
	height: 50px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.header-area .main-nav {
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
	border-radius: 40px;	
	background: rgba(0, 0, 0, 0.7);
	max-width: 1024px;
	margin: 16px auto 0;
	min-height: 40px;
}

.header-area .main-nav .logo img {
	max-width: 100px;
	position: absolute;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
}
@media(max-width:767px){
	.header-area .main-nav .logo img {
		max-width: 64px;		
	}	
}
.header-area .main-nav .nav {
	display: flex;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
	z-index: 999;
}

.header-area .main-nav .nav.left {
	justify-content: start;
}

.header-area .main-nav .nav.right {
	justify-content: end;
}

.header-area .main-nav .nav li {
	padding-left: 20px;
	padding-right: 20px;
}

.header-area .main-nav .nav li a {
	display: block;
	font-weight: 500;
	font-size: 20px;
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	height: 40px;
	line-height: 40px;
	border: transparent;
	letter-spacing: 1px;
	font-family: "Anton", sans-serif;
	text-transform: uppercase;
	font-style: italic;
}

.header-area .main-nav .nav li a:hover {
	color: #006a30;
}

.header-area .main-nav .menu-trigger {
	cursor: pointer;
	display: block;
	position: absolute;
	top: 17px;
	width: 32px;
	height: 34px;
	text-indent: -9999em;
	z-index: 99;
	right: 40px;
	display: none;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	background-color: #ffffff;
	display: block;
	position: absolute;
	width: 30px;
	height: 2px;
	left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	background-color: #ffffff;
	display: block;
	position: absolute;
	width: 30px;
	height: 2px;
	left: 0;
	width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
	content: "";
}

.header-area .main-nav .menu-trigger span {
	top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
	-moz-transform-origin: 33% 100%;
	-ms-transform-origin: 33% 100%;
	-webkit-transform-origin: 33% 100%;
	transform-origin: 33% 100%;
	top: -10px;
	z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
	-moz-transform-origin: 33% 0;
	-ms-transform-origin: 33% 0;
	-webkit-transform-origin: 33% 0;
	transform-origin: 33% 0;
	top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
	background-color: transparent;
	width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
	-moz-transform: translateY(6px) translateX(1px) rotate(45deg);
	-ms-transform: translateY(6px) translateX(1px) rotate(45deg);
	-webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
	transform: translateY(6px) translateX(1px) rotate(45deg);
	background-color: #ffffff;
}

.header-area .main-nav .menu-trigger.active span:after {
	-moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
	-ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
	-webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
	transform: translateY(-6px) translateX(1px) rotate(-45deg);
	background-color: #ffffff;
}

.header-area.header-sticky {
	min-height: 80px;
}

.header-area.header-sticky .nav {
	margin: 10px 0 !important;
}

.header-area.header-sticky .nav li a {
	color: #ffffff;
}

.header-area.header-sticky .nav li a.active {
	color: #00b13d;

}

@media (max-width: 1200px) {
	.header-area .main-nav .nav li {
		padding-left: 12px;
		padding-right: 12px;
	}

	.header-area .main-nav:before {
		display: none;
	}
}

@media (max-width: 991px) {
	.header-area {
		padding: 0px 15px;
		height: 80px;
		box-shadow: none;
		text-align: center;
	}

	.header-area .container {
		padding: 0px;
	}

	.header-area .logo {
		margin-top: 27px !important;
		margin-left: 30px;
	}

	.header-area .menu-trigger {
		display: block !important;
	}

	.header-area .main-nav {
		overflow: hidden;
	}

	.header-area .main-nav .nav {
		float: none;
		width: 100%;
		margin-top: 80px !important;
		display: none;
		-webkit-transition: all 0s ease 0s;
		-moz-transition: all 0s ease 0s;
		-o-transition: all 0s ease 0s;
		transition: all 0s ease 0s;
		margin-left: 0px;
	}

	.header-area .main-nav .nav li:first-child {
		border-top: 1px solid #eee;
	}

	.header-area .main-nav .nav li {
		width: 100%;
		background: #fff;
		border-bottom: 1px solid #eee;
		padding-left: 0px !important;
		padding-right: 0px !important;
	}

	.header-area .main-nav .nav li a {
		height: 50px !important;
		line-height: 50px !important;
		padding: 0px !important;
		border: none !important;
		background: #fff !important;
		color: #3B566E !important;
	}

	.header-area .main-nav .nav li a:hover {
		background: #eee !important;
	}
}

/* 
---------------------------------------------
welcome
--------------------------------------------- 
*/
.welcome-area {
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(../images/bgcopa.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 85vh;
}

.welcome-area .content {
	height: 85vh;	
	margin: 32px auto 0;
	gap: 32px;
}
.welcome-area .content h1,
.welcome-area .content p{
	text-shadow: 1px 0px black;
}


.sec-video .video {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9, padrão dos vídeos */
	height: 0;
	overflow: hidden;
}
	
.sec-video .video video,
.sec-video .video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.sec-video .bg {
	border-radius: 32px;	
	padding: 16px;
}

.campeonato .content{
	margin-top: 64px;
	gap: 32px;
}

.campeonato span {
	display: block;
	font-size: 22px;
	font-weight: bold;
	margin: 32px 0 8px;
}

.campeonato ul {
	padding-left: 16px;
}

.campeonato ul li {
	list-style: disc;
}

.campeonato ul li,
.campeonato p {
	font-size: 18px;
	color: #ffffff;
	margin-bottom: 8px;
}

.campeonato img {
	max-width: 500px;
}

.img-mobile {
	display: none;
}

@media(max-width:767px) {
    
    .campeonato .section-title{
        text-align: center;
    }
    
    .campeonato .section-title br,
	.img-desktop {
		display: none;
	}

	.img-mobile {
		display: block;
	}
}

#contador {
	color: #fff;
	font-size: 33px;
	font-weight: bold;
	margin: 32px auto;
}

.contador .local{
	margin-top: 32px;
}

@media(max-width:767px) {	
	#contador {	
		font-size: 23px;		
	}

	.contador .local{
		margin-top: 32px;
	}
}

.torcida{
	overflow: hidden;
	position: relative;		
	background-image: url(../images/b3.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;	
}

.torcida h2{
	margin-bottom: 32px;
}

.torcida .button{
	margin-top: 32px;
}

.recursos .blocks{
	margin-top: 64px;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr) ) ;
	gap: 32px;
}

.recursos .blocks .items{
	padding: 16px;
	border-radius: 32px;
}

.recursos .blocks .items .icon{
	max-width: 100px;
	margin-bottom: 16px;
}

.recursos .blocks .items p{
	font-size: 22px;
	font-weight: 700;
	line-height: 24px;
	text-transform: uppercase;
}

@media(max-width:767px){
	.recursos .blocks{		
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.recursos .blocks .items{
		padding: 16px 8px;		
	}
	
	.recursos .blocks .items .icon{
		max-width: 50px;		
	}
	
	.recursos .blocks .items p{
		font-size: 16px;		
		line-height: 20px;		
	}
}

.diversao .blocks{
	margin-top: 64px;
	grid-template-columns: repeat(4, 1fr);
	align-items: center;
	gap: 16px;
}

.diversao .grades .items{
	position: relative;
	padding: 16px;
}

.diversao .grades .items:after{
	content: "";
    width: 6px;
    height: 30px;
    background: #fff;
    display: block;
    transform: skewX(-20deg);
    position: absolute;
    top: 15px;
	left: 0;
}
.diversao .grades .items.first:after{
	content: "";
	display: none;    
}

.diversao .blocks .items .icon{
	width: 100%;
}

@media(max-width:767px){
	.diversao .blocks{		
		grid-template-columns: repeat(2, 1fr);
		gap: 0;		
	}


	.diversao .grades{
		grid-template-columns: repeat(2, 1fr);			
		gap: 16px;		
	}

	.diversao .blocks:not(.grades) .items{		
		padding: 0;
	}
	
	.diversao .grades .items:nth-child(3):after{		
		display: none;    
	}	
}

.ingressos .content{
	grid-template-columns: 60% 40%;
	margin-top: 64px;
	gap: 32px;
}

.ingressos .content .items{
	padding: 64px 22px;
	border-radius: 32px;
	height: 100%;
}

.ingressos .content .items h2{
	color: #000;
	font-size: 66px;
    line-height: 76px;
    font-style: italic;
	margin-bottom: 32px;
	text-transform: uppercase;
}

.ingressos .content .items p{
	font-size: 30px;
	line-height: 34px;
	margin-bottom: 32px;	
}

.ingressos .content a.button{
	background: #ffffff;
	color: #000000;
}

.ingressos .content a.button:hover{
	background: #006a30;
	color: #ffffff;
}

.hidden{
	margin-top: 32px;
}

.hidden .section-title{
	margin-bottom: 32px;
}

/* Form */
.formIntegration{
	width: 100%;
	margin: 0 auto;
}
.formIntegration .input-field{
	width: 100%;
    border-radius: 32px;
    border: solid 1px #fff;
    padding: 8px 16px;
    color: #000;
}
.formIntegration label{
	display: none;
	visibility: hidden;
}
.DinamizeDivCaptchaMessage{
	display: none;
}
.formIntegration .divinput{
	width: 100%;
}
.formIntegration .gap{
	gap: 32px;	
}
.div_PHN.hidden_DDI{
	display: flex;
	align-items: center;	
}
.div_PHN_DDI {
	flex: 0 0 10%;
}
.div_PHN_NUM{
	flex: 0 0 calc(100% - 92px);
}
.formIntegration .submit-btn{	
	font-size: 28px;
    border-radius: 48px;
    padding: 24px 48px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 0.25px;
    display: inline-block;
	border: solid 1px #fff;
	background: #fff;
}
.formIntegration .submit-button-td:hover{
	background: #006a30;
    color: #ffffff;
}

.patrocinio{
	padding: 64px 0;
	background-color: #eee;
}

.patrocinio .section-title{
	color: #000;
}

.patrocinio .grid{
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	padding: 10px;
}

.patrocinio .grid img{
	max-width: 150px;
	width: 100%;
}

@media(max-width:767px){
	.ingressos .content{		
		grid-template-columns:  1fr;
		gap: 16px;		
	}
	.ingressos .content .items h2{		
		font-size: 46px;
		line-height: 56px;		
	}	
	.ingressos .content .items p{
		font-size: 18px;		
	}
	.formIntegration .submit-btn{	
		font-size: 18px;
        border-radius: 32px;
        padding: 16px 32px;
	}
	.formIntegration .gap{
		gap: 16px;	
	}
	.div_PHN_NUM{
		flex: 0 0 calc(100% - 76px);
	}
	.formIntegration .submit-btn{	
		margin-top: 32px;
	}	
	.patrocinio .grid{
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;		
	}
	.patrocinio .grid .items{
		margin-bottom: 32px;	
	}
}

.slick-slide img {   
    width: 100%;
}

footer{
	background-color: #ffffff;
	padding: 64px 0 32px;
}

footer img{
	max-width: 300px;
}

footer .social{
	margin-bottom: 32px;
	gap: 16px;
}

footer .social a{
	color: #000;
	font-size: 30px;
}

footer .social a:hover{
	color: #006a30;	
}

footer p{
	color: #000;
	margin-top: 32px;
}