@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,100&family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Barcode+39+Text&family=Poppins:ital,wght@0,100;0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,100&family=Press+Start+2P&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Press Start 2P', sans-serif;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 0 100px;

  background: #000;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: 1s;
  z-index: 1;
}

header.sticky {
  height: 80px;
}

header.sticky .banner {
  opacity: 0.4;
}

header .banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
  background-image: linear-gradient(90deg,
      #a01212 0%,
      #d2122e 35%,
      #c60c30 100%);
  /* W3C 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  animation: color 15s ease infinite;
}

header .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10vw;
  color: rgb(255, 254, 254);
  text-shadow: rgba(255, 255, 255, 0);
  transition: 1s;
  text-decoration: none;
  z-index: 1;
  font-family: 'Libre Barcode 39 Text', cursive;
}

header.sticky .logo {
  position: absolute;
  font-size: 2rem;
  left: 100px;
  transform: translate(0, -50%);
}

nav {
  position: relative;
  display: flex;
  z-index: 1;
}

nav ul {
  position: relative;
  display: flex;
  transition: 0.25s;
  transform: translateX(100px);
  opacity: 0;
}

header.sticky nav ul {
  transform: translateX(0);
  transition-delay: 0.75s;

  opacity: 1;
  visibility: visible;
}


nav ul li {
  list-style: none;
}

nav ul li a {
  color: #fff;
  display: inline-block;
  padding: 10px 15px;
  font-size: 1.2rem;
  text-decoration: none;
}

nav ul li a:hover {
  color: #ff275f;
}



.time {
  flex-direction: column;
}


.time h2 {
  font-size: 2rem;
}

.time h2 span {
  color: #ff275f;

}

section .card {
  z-index: 0.5;
  width: 600px;
  height: 350px;
  margin: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 20px;
  background-size: 200% 200%;
  /* fallback for old browsers */
  background-image: linear-gradient(90deg,
      #a01212 0%,
      #d2122e 35%,
      #c60c30 100%);
  /* W3C 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  animation: color 15s ease infinite;
  transition: 1s;
}

@keyframes color {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

section .card img {
  position: absolute;
  bottom: 0;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  height: 400px;
  transition: 0.5s;
}

section .card p {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #fff;
}

section .card a {
  text-decoration: none;
  color: #7289da;
}

.card:hover img {
  z-index: 15;
  left: 80%;
  height: 500px;
}

.card span {
  color: #ff275f;
}

.card .conteudo {
  position: relative;
  width: 50%;
  left: 20%;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  padding: 20px 20px 20px 40px;
}

section .card:hover .conteudo {
  opacity: 1;
  visibility: visible;
  left: 0%;
}





.rodape {
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: linear-gradient(90deg,
      #a01212 0%,
      #d2122e 35%,
      #c60c30 100%);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.rodape .card img {
  position: absolute;
  bottom: 0;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  height: 400px;
  transition: 0.5s;
}

.rodape .card .conteudo {
  position: relative;
  width: 50%;
  left: 20%;
  transition: 0.5s;
  opacity: 1;
  visibility: visible;
  padding: 20px 20px 20px 40px;
}

.rodape .card .conteudo a {
  color: #7289da;
  text-decoration: none;
}

.rodape .card .conteudo ion-icon {
  height: 50px;
  width: 50px;
}

@media (max-width: 991px) {

  section,
  header {
    padding: 40px;
  }

  section h2 {
    font-size: 2rem;
  }

  header.sticky .logo {
    left: 40px;
  }

  header.sticky .banner {
    opacity: 0;
  }

  nav ul {
    display: none;
    opacity: 0;
    visibility: hidden;
  }

  nav.active ul {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  header.sticky nav ul {
    opacity: 1;
    visibility: visible;
  }

  nav ul li a {
    font-size: 2rem;
  }

  header.sticky .toggle {
    position: fixed;
    top: 15px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: #fff url('img/menu.png');
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
  }

  header.sticky .toggle.active {
    background: #fff url('img/close.png');
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
  }
}












div .card img {
  position: absolute;
  bottom: 0;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  height: 400px;
  transition: 0.5s;
}

div .card p {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #fff;
}

div .card a {
  text-decoration: none;
  color: #7289da;
}

div .card:hover img {
  z-index: 15;
  left: 80%;
  height: 500px;
}

div .card span {
  color: #ff275f;
}

div .card .conteudo {
  position: relative;
  width: 50%;
  left: 20%;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  padding: 20px 20px 20px 40px;
  flex-direction: column;
}

div .card:hover .conteudo {
  opacity: 1;
  visibility: visible;
  left: 0%;
}

div .card {
  z-index: 0.5;
  position: relative;
  width: 600px;
  height: 350px;
  margin: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 20px;
  background-size: 200% 200%;
  /* fallback for old browsers */
  background-image: linear-gradient(90deg,
      #a01212 0%,
      #d2122e 35%,
      #c60c30 100%);
  /* W3C 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  animation: color 15s ease infinite;
  transition: 1s;
}

section div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 130px;
}


section .content-man {
  flex-direction: column;
  width: 80%;
  gap: 1rem;
}

section .content-man span {
  color: #ff275f;
}


.swip-sec {
  height: 100%;
  width: 100%;
}


.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SWIPER2*/

/* .swiper2 {
  width: 240px;
  height: 320px;
  background-color: #4717f6;
}

.swiper-slide2 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
} */