@font-face {
  font-family: VWHead-Light;
  src: url(../font/VWHead-Light.otf);
}

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

@font-face {
  font-family: VWHead-Regular-Italic;
  src: url(../font/VWHead-RegularItalic.otf);
}

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

@font-face {
  font-family: VWHead-Bold-Italic;
  src: url(../font/VWHead-BoldItalic.otf);
}

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

@font-face {
  font-family: VWText-Light;
  src: url(../font/VWText-Light.otf);
}

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

@font-face {
  font-family: VWText-Regular-Italic;
  src: url(../font/VWText-RegularItalic.otf);
}

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

@font-face {
  font-family: VWText-Bold-Italic;
  src: url(../font/VWText-BoldItalic.otf);
}

.vw-head-light {
  font-family: VWHead-Light;
}

.vw-head-regular {
  font-family: VWHead-Regular;
}

.vw-head-medium-italic {
  font-family: VWHead-Regular-Italic;
}

.vw-head-bold {
  font-family: VWHead-Bold;
}

.vw-head-bold-italic {
  font-family: VWHead-Bold-Italic;
}

.vw-head-extrabold {
  font-family: VWHead-ExtraBold;
}

.vw-text-light {
  font-family: VWText-Light;
}

.vw-text-regular {
  font-family: VWText-Regular;
}

.vw-text-medium-italic {
  font-family: VWText-Regular-Italic;
}

.vw-text-bold {
  font-family: VWText-Bold;
}

.vw-text-bold-italic {
  font-family: VWText-Bold-Italic;
}

:root {
  --black: #3D3935;
  --white: #ffffff;

  --primary: #001E50;
  --secondary: #01B0EF;

  --orange: #E88302;
  --yellow: #FFCF00;
  --green: #48AA3F;
  --pink: #FD325C;
  --gray: #EEF3F3;
}

/* HTML GLOBAL */

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

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: VWHead-Regular;
  font-style: normal;
  color: var(--primary);
}

p,
span {
  font-family: VWText-Regular;
  font-style: normal;
  font-size: 16px;
  color: var(--primary);
}

/* CUSTON*/

.checkbtn {
	font-size: 30px;
	float: right;
	cursor: pointer;
	display: none;
}

#check {
	display: none;
}

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

/* TEXT COLORS*/

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

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

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

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

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

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

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

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

/* BACKGROUND COLORS*/

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

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

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

.bg-primary-14 {
  background: linear-gradient(to bottom, #FFFFFF 14%, var(--primary) 14%);
}

.bg-primary-22 {
  background: linear-gradient(to bottom, #FFFFFF 22%, var(--primary) 22%);
}

.bg-primary-center {
  background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 11.75%, var(--primary) 11.75%, var(--primary) 88.25%, #FFFFFF 88.25%, #FFFFFF 100%);
}

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

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

.bg-about-vw {
  background-image: url('../img/bg-about-vw.png');
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
}

.bg-numbers {
  background-image: url('../img/about-program.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
}

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

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

.border-primary {
  border-color: var(--primary);
}

.border-secondary {
  border-color: var(--secondary);
}

/* UTILS */

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

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

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

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

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

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

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

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

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

/* ANIME */
/* 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;
}

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

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

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

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

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

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

[data-time="slow13"] {
  animation-duration: 3s;
  animation-delay: 3s;
  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); }
}

/* Definindo a animação de movimento para cima e para baixo */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0); /* Posição inicial e final */
  }
  50% {
    transform: translateY(-10px); /* Move 10px para cima no meio da animação */
  }
}

/* Estilo base sem animação */
.w-25.h-25 {
  transition: border-color 0.3s ease-in-out; /* Mantém a transição suave para a borda */
}

/* Aplica a animação e muda a cor da borda apenas no hover */
.w-25.h-25:hover {
  animation: bounce 2s ease-in-out infinite; /* Animação ativada no hover */
  border-color: var(--secondary); /* Muda a cor da borda para secondary */
}

/* MEDIA QUERYS */
@media (min-width: 1536px) {
  .w-max-640-lg{
    width: 100%;
    max-width: 640px;
  }
}

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

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

@media (min-width: 1024px) and (max-width: 1279px){
  .logo-header {
    width: 80px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
	.checkbtn {
		display: flex;
	}
	ul{
		position: fixed;
		width: 100%;
		height: 100vh;
		background: var(--primary);
		top: 100px;
		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;
	}

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

@media (max-width: 1023px) {
  .logo-header {
    width: 80px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
	.checkbtn {
		display: flex;
	}
	ul{
		position: fixed;
		width: 100%;
		height: 100vh;
		background: var(--primary);
		top: 100px;
		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;
	}

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

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

@media (max-width: 767px) {
  .about-program-vw {
    width: 100%;
    max-width: 80px;
  }
  
  .about-program {
    width: 100%;
    max-width: 260px;
  }
}

@media (max-width: 639px) {
  .about-program {
    width: 100%;
    max-width: 200px;
  }

  .movie {
    max-width: 500px;
    height: 285px;
  }
}

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