
@font-face {
  font-family: Montserrat-Regular;
  src: url(../font/Montserrat-Regular.ttf);
}

@font-face {
  font-family: Montserrat-Medium;
  src: url(../font/Montserrat-Medium.ttf);
}

@font-face {
  font-family: Montserrat-MediumItalic;
  src: url(../font/Montserrat-MediumItalic.ttf);
}

@font-face {
  font-family: Montserrat-SemiBold;
  src: url(../font/Montserrat-SemiBold.ttf);
}

@font-face {
  font-family: Montserrat-Bold;
  src: url(../font/Montserrat-Bold.ttf);
}

@font-face {
  font-family: Montserrat-ExtraBold;
  src: url(../font/Montserrat-ExtraBold.ttf);
}

@font-face {
  font-family: Montserrat-Black;
  src: url(../font/Montserrat-Black.ttf);
}

.montserrat-regular {
  font-family: Montserrat-Regular;
}

.montserrat-medium {
  font-family: Montserrat-Medium;
}

.montserrat-medium-italic {
  font-family: Montserrat-MediumItalic;
}

.montserrat-semibold {
  font-family: Montserrat-SemiBold;
}

.montserrat-bold {
  font-family: Montserrat-Bold;
}

.montserrat-extrabold {
  font-family: Montserrat-ExtraBold;
}

.montserrat-black {
  font-family: Montserrat-Black;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* bloqueia scroll lateral */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: OpenSans-Regular;
  font-style: normal;
}

p,
span {
  font-family: OpenSans-Regular;
  font-style: normal;
  font-size: 16px;
}

:root {
  --black: #3D3935;
  --white: #ffffff;
  --blue: #092A3B;
  --blue-medium: #003DA6;
  --yellow: #F0B323;
  --gray: #D0D0D0;
  --green: #95c23f;
}

/* CUSTON*/

.w-250 {
  width: 250px;
}

.w-280 {
  width: 280px;
}

.w-300 {
  width: 300px;
}

.max-w-350 {
  width: 100%;
  max-width: 350px;
}

.w-400 {
  width: 400px;
}

.w-max-400 {
  width: 100%;
  max-width: 400px;
}

.max-w-960 {
  width: 100%;
  max-width: 960px;
}

.w-max-1024 {
  width: 100%;
  max-width: 1024px;
}

.w-max-1280 {
  width: 100%;
  max-width: 1280px;
}

.w-max-1326 {
  width: 100%;
  max-width: 1326px;
}

.bt-inscription-head {
  width: 380px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bt-inscription-footer {
  width: 600px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blue-medium);
}

/* TEXT COLORS*/
.text-blue {
  color: var(--blue);
}

.text-black {
  color: var(--black);
}

.text-white {
  color: var(--white);
}

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

/* BACKGROUND COLORS*/
.bg-white {
  background-color: var(--white);
}

.bg-blue {
  background-color: var(--blue);
}

.bg-blue-medium {
  background-color: var(--blue-medium);
}

.bg-gray {
  background-color: var(--gray);
}

.bg-gdm {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-medium) 40%, var(--green) 60%, var(--green) 100%);
  background-size: auto;
  background-repeat: no-repeat;
  background-position-x: center;
}

.bg-gdm-icons-white {
  background: url('../img/bg-gdm-icons-white.svg');
  background-size: auto;
  background-repeat: no-repeat;
  background-position-x: center;
}

.bg-gdm-icons-black {
  background: url('../img/bg-gdm-icons-black.svg');
  background-size: auto;
  background-repeat: no-repeat;
  background-position-x: center;
}

/* BORDER COLOR */
.border-light-gray {
  border-color: var(--light-gray);
}

/* HTML GLOBAL */

html {
  scroll-behavior: smooth;
}

.checkbtn {
	font-size: 30px;
	float: right;
	line-height: 80px;
  margin-top: 80px;
	cursor: pointer;
	display: none;
}
#check {
	display: none;
}

nav ul li a {
	color: var(--gray-dark);
}

.movie {
  width: 100%;
  max-width: 900px;
  height: 100vh;
  max-height: 500px;
  display: flex;
  margin: auto;
}

/* ANIME */
/* Base para elementos com animação */
/* Base para elementos com animação */
[data-anime] {
  opacity: 0;
  animation-play-state: paused; /* Animação pausada até entrar na tela */
}

/* Tipos de animação */
[data-anime="top"] {
  animation-name: fromTop;
}

[data-anime="right"] {
  animation-name: fromRight;
}

[data-anime="left"] {
  animation-name: fromLeft;
}

[data-anime="bottom"] {
  animation-name: fromBottom;
}

[data-anime="center"] {
  animation-name: fromCenter;
}

/* Tempos de animação */
[data-time="fast"] {
  animation-duration: 0.2s;
  animation-delay: 0.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="medium"] {
  animation-duration: 0.4s;
  animation-delay: 0.4s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow01"] {
  animation-duration: 0.6s;
  animation-delay: 0.6s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow02"] {
  animation-duration: 0.8s;
  animation-delay: 0.8s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow03"] {
  animation-duration: 1.0s;
  animation-delay: 1.0s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow04"] {
  animation-duration: 1.2s;
  animation-delay: 1.1s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow05"] {
  animation-duration: 1.4s;
  animation-delay: 1.4s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow06"] {
  animation-duration: 1.6s;
  animation-delay: 1.6s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
/* Dispara a animação quando a classe 'visible' é adicionada */
[data-anime].visible {
  animation-play-state: running;
}

/* Definição das animações */
@keyframes fromTop {
  from { opacity: 0; transform: translate3d(0, -50px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fromRight {
  from { opacity: 0; transform: translate3d(50px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fromLeft {
  from { opacity: 0; transform: translate3d(-50px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fromBottom {
  from { opacity: 0; transform: translate3d(0, 50px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fromCenter {
  from { opacity: 0; transform: scale(0.8); } /* Efeito de escala para o center */
  to { opacity: 1; transform: scale(1); }
}


/* MEDIA QUERYS */
@media (min-width: 1536px) {}

@media (min-width: 1280px) {
  .xl\:w-max-1280 {
    width: 100%;
    max-width:  1280px;
  }

  .bg-gdm-web {
    background: linear-gradient(90deg, var(--blue) 0%, var(--blue-medium) 40%, var(--green) 60%, var(--green) 100%);
    background-size: auto;
    background-repeat: no-repeat;
    background-position-x: center;
  }
}

@media (min-width: 1024px) and (max-width: 1279px){
    .logo-header {
    width: 140px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
	.checkbtn {
		display: block;
    margin-top: 27px;
	}
	ul{
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #fff;
		top: 70px;
		left: -100%;
		text-align: center;
		transition: all .5s;
	}
	nav ul li{
		display: block;
		margin: 20px 0;
		line-height: 30px;
	}
  nav ul li a {
    font-family: O;
    color: var(--blue-dark);
  }
	#check:checked ~ ul {
		left: 0;
	}
  .bt-inscription-footer {
    width: 100%;
    max-width: 600px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blue-medium);
  }

  .bt-inscription-head {
    width: 190px;
    height: 67px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .bg-gdm-web {
    background: linear-gradient(90deg, var(--blue) 0%, var(--blue-medium) 40%, var(--green) 60%, var(--green) 100%);
    background-size: auto;
    background-repeat: no-repeat;
    background-position-x: center;
  }
}

@media (max-width: 1023px) {
  .logo-header {
    width: 140px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
	.checkbtn {
		display: block;
    margin-top: 27px;
	}
	ul{
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #fff;
		top: 70px;
		left: -100%;
		text-align: center;
		transition: all .5s;
	}
	nav ul li{
		display: block;
		margin: 20px 0;
		line-height: 30px;
	}
  nav ul li a {
    font-family: O;
    color: var(--blue-dark);
  }
	#check:checked ~ ul {
		left: 0;
	}
  .bt-inscription-footer {
    width: 100%;
    max-width: 600px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blue-medium);
  }

  .bg-gdm-mobile {
    background: linear-gradient(90deg, var(--blue) 0%, var(--blue-medium) 40%, var(--green) 60%, var(--green) 100%);
    background-size: auto;
    background-repeat: no-repeat;
    background-position-x: center;
  }

  .bg-blue-mobile {
    background-color: var(--blue-medium);
  }

  .bg-green-mobile {
    background-color: var(--green);
  }

  .movie {
    width: 100%;
    max-width: 600px;
    height: 100vh;
    max-height: 340px;
    display: flex;
    margin: auto;
  }
}

@media (max-width: 640px) { 
  .movie {
    max-width: 500px;
    height: 285px;
  }
}

@media (max-width: 500px) { 
  .movie {
    max-width: 400px;
    height: 220px;
  }
}
