@font-face {
  font-family: opensans;
  src: url("../fonts/opensans/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: opensans;
  src: url("../fonts/opensans/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: opensans;
  src: url("../fonts/opensans/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: opensans;
  src: url("../fonts/opensans/OpenSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: opensans;
  src: url("../fonts/opensans/OpenSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
.content {
  width: 100%;
  max-width: 1250px;
  padding: 0 25px;
  margin: 0 auto;
}

@keyframes circle_animate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(3600deg);
  }
}
input[type=submit], input[type=radio], input[type=checkbox] {
  cursor: pointer;
}

* {
  outline: none !important;
}

select,
input,
textarea {
  -webkit-appearance: none;
}

*[data-load=on] {
  color: transparent !important;
  pointer-events: none;
  position: sticky;
  filter: opacity(0.9);
  transition: all 0.3s;
}
*[data-load=on]:before {
  content: "";
  position: absolute;
  background: url(../img/loading.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: 50%;
  transform: translate(-50%, -50%);
  animation-name: rotate_load;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
*[data-load=on]:after {
  content: "Carregando";
  position: absolute;
  color: white;
  font-family: ubuntu;
  font-size: 10px;
  top: calc(50% + 10px);
  left: 50%;
  transform: translate(-50%, -50%);
  animation-name: text_load;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes rotate_load {
  100% {
    transform: translate(-50%, -50%) rotate(1080deg);
  }
}
@keyframes text_load {
  0% {
    content: "Carregando";
  }
  25% {
    content: "Carregando.";
  }
  50% {
    content: "Carregando..";
  }
  75% {
    content: "Carregando...";
  }
  100% {
    content: "Carregando";
  }
}
footer .content {
  position: relative;
  padding-top: 73px;
}
footer .content a.whatsapp {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #16CE3F;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  padding: 15px 20px;
  border-radius: 15px;
}
footer .content a.whatsapp svg {
  width: 30px;
  height: auto;
}
footer .content a.whatsapp::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(/src/assets/navbar/seta.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
footer .content .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 30px;
  border-bottom: 1px solid #132E55;
}
footer .content .top a.logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
footer .content .top .redes {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .content .top .redes > p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  color: #fff;
}
footer .content .top .redes > div {
  display: flex;
  gap: 14px;
}
footer .content .top .redes > div a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0036F8;
}
footer .content .top .redes > div a:hover {
  background: #2173FF;
}
footer .content .top .redes > div a img {
  width: 20px;
}
footer .content .bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
}
footer .content .bottom > p {
  font-weight: 300;
  font-size: 12px;
  color: rgba(124, 148, 182, 0.9490196078);
  margin: 0;
}
footer .content .bottom .dev {
  display: flex;
  align-items: center;
}
footer .content .bottom .dev span {
  font-weight: 300;
  font-size: 12px;
  color: rgba(124, 148, 182, 0.9490196078);
  margin: 0;
}
footer .content .bottom .dev img {
  margin: 0 0 4px 7px;
  width: 60px;
}
footer .content .bottom .pages {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .content .bottom .pages a {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
footer .content .bottom .pages a:hover {
  color: #2173FF;
}
@media (max-width: 1200px) {
  footer .content .bottom > p {
    order: 1;
  }
  footer .content .bottom .dev {
    order: 2;
  }
  footer .content .bottom .pages {
    width: 100%;
    justify-content: center;
    order: 0;
    padding: 0 0 35px;
  }
}
@media (max-width: 650px) {
  footer .content a.whatsapp {
    font-size: 14px;
    width: 240px;
  }
  footer .content a.whatsapp svg {
    width: 20px;
  }
  footer .content .top {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  footer .content .top .redes {
    width: 100%;
    justify-content: center;
  }
  footer .content .bottom {
    padding: 25px 0 20px;
  }
  footer .content .bottom > p {
    width: 100%;
    margin: 0 0 10px;
  }
  footer .content .bottom .pages {
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid #132E55;
    padding: 0 0 25px;
    margin: 0 0 20px;
  }
}

header {
  height: 105px;
  background: #000b27;
  position: relative;
  z-index: 100;
}
header[data-scroll=true] > nav {
  height: 65px;
}
header[data-scroll=true] > nav a.logo {
  width: 196px;
  height: 52.4px;
}
header[data-scroll=true] > nav .pages > a {
  padding: 10px 0;
}
header[data-scroll=true] > nav .pages button.drop span {
  padding: 10px 20px 10px 0;
}
header[data-scroll=true] > nav .pages a.visitar {
  padding: 8px 16px;
}
header > nav {
  margin: 0 auto;
  position: fixed;
  top: 0;
  width: 100%;
  height: 105px;
  background: #000b27;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.1s;
  z-index: 100;
}
header > nav a.logo {
  display: block;
  width: 280px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s;
  cursor: pointer;
}
header > nav a.logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
header > nav button.menu {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 40px;
  background: transparent;
  padding: 0;
  border: none;
  background: #0036F8;
  border-radius: 7px;
}
header > nav button.menu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% - 10px);
  transform: translate(-50%, -50%);
  width: 30px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}
header > nav button.menu::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% + 10px);
  transform: translate(-50%, -50%);
  width: 30px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}
header > nav button.menu span {
  width: 30px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}
header > nav .pages {
  display: flex;
  gap: 24px;
  align-items: center;
}
header > nav .pages > a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #C6CDDA;
  text-decoration: none;
  padding: 15px 0;
  transition: all 0.1s;
  cursor: pointer;
}
header > nav .pages > a:hover {
  color: #00a3ff;
}
header > nav .pages button.drop {
  position: relative;
  border: none;
  background: transparent;
}
header > nav .pages button.drop:hover > div {
  opacity: 1;
  pointer-events: all;
}
header > nav .pages button.drop:hover span {
  color: #00a3ff;
}
header > nav .pages button.drop span {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #C6CDDA;
  padding: 15px 20px 15px 0;
  transition: all 0.1s;
}
header > nav .pages button.drop span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 10px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(./../img/dropArrow.svg);
  background-position: center;
  background-repeat: no-repeat;
}
header > nav .pages button.drop > div {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  background: #0036F8;
  padding: 10px 15px;
  border-radius: 15px;
  opacity: 0;
  pointer-events: none;
  width: max-content;
  max-width: 310px;
  transition: all 0.3s;
}
header > nav .pages button.drop > div a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 33px;
  color: #fff;
  border-bottom: 1px solid #00A3FF;
  padding: 0 4px;
}
header > nav .pages button.drop > div a:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(./../img/seta.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0 0 11px;
}
header > nav .pages button.drop > div a:last-child {
  border-bottom: none;
}
header > nav .pages a.visitar {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  background: #0036F8;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  transition: all 0.1s;
}
header > nav .pages a.visitar:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(./../img/seta.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0 0 16px;
}
@media (min-width: 2000px) {
  header > nav {
    padding: 0 calc((100% - 1920px) / 2);
  }
}
@media (max-width: 1300px) {
  header > nav {
    padding: 0 20px;
  }
  header > nav .pages {
    gap: 15px;
  }
  header > nav .pages > a {
    padding: 10px 0;
    font-size: 14px;
  }
  header > nav .pages button.drop span {
    padding: 10px 20px 10px 0;
    font-size: 14px;
  }
  header > nav .pages a.visitar {
    padding: 9px 16px;
    font-size: 16px;
  }
  header > nav .pages a.visitar:after {
    display: none;
  }
}
@media (max-width: 1100px) {
  header[data-open=true]::before {
    opacity: 0.9;
    pointer-events: all;
  }
  header[data-open=true] > nav button.menu::before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
    width: 30px;
  }
  header[data-open=true] > nav button.menu::after {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
    width: 30px;
  }
  header[data-open=true] > nav button.menu span {
    opacity: 0;
    width: 0;
    transform: rotate(360deg);
  }
  header[data-open=true] > nav .pages {
    opacity: 1;
    pointer-events: all;
    gap: 7px;
  }
  header[data-open=true] > nav .pages button.drop:hover > div {
    display: block;
  }
  header[data-open=true] > nav .pages button.drop > div {
    position: relative;
    transform: initial;
    display: none;
  }
  header::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000b27;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
  }
  header > nav button.menu {
    display: flex;
  }
  header > nav .pages {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 360px;
    background: #000b27;
    height: 100%;
    z-index: -1;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    transition: all 0.3s;
    opacity: 0;
    pointer-events: none;
    gap: 25px;
    padding: 130px 0 0;
  }
}
@media (max-width: 650px) {
  header {
    height: 65px;
  }
  header > nav {
    height: 65px;
  }
  header > nav a.logo {
    width: 196px;
    height: 52.4px;
  }
}

section.home_banner {
  padding: 6px 25px 0;
  max-width: 1920px;
  margin: 0 auto;
}
section.home_banner[data-animation=true] .content .top img.homem {
  transform: translateX(50px);
  opacity: 0;
  filter: brightness(0);
}
section.home_banner[data-animation=true] .content .top .info_content {
  opacity: 0;
}
section.home_banner[data-animation=true] .content .top .novidades_content {
  opacity: 0;
}
section.home_banner .content {
  max-width: none;
  padding: 0;
}
section.home_banner .content .top {
  position: relative;
  height: 800px;
  width: 100%;
  border-radius: 10px 10px 50px 50px;
  overflow: hidden;
}
section.home_banner .content .top::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34.66%, rgba(0, 96, 240, 0.39) 100%);
}
section.home_banner .content .top::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 218px;
  height: 44px;
  background-image: url(./../img/home/home_banner/banner_vetor.png);
  background-position: center bottom;
  background-repeat: no-repeat;
}
section.home_banner .content .top video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section.home_banner .content .top img.homem {
  position: absolute;
  right: 185px;
  bottom: -1px;
  transition: all 1.5s;
  transition-delay: 1s;
}
section.home_banner .content .top .info_content {
  padding: 0 50px 48px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  transition: all 1.5s;
  transition-delay: 1s;
}
section.home_banner .content .top .info_content .left {
  width: calc(50% - 30px);
}
section.home_banner .content .top .info_content .left .data {
  position: relative;
  background: linear-gradient(90deg, #042374 0%, rgba(0, 0, 0, 0) 80.54%);
  padding: 0 0 0 42px;
  width: 300px;
  height: 50px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  border-radius: 8px;
  text-transform: uppercase;
}
section.home_banner .content .top .info_content .left .data .square {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #022394;
}
section.home_banner .content .top .info_content .left .data .square::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #1860ff;
}
section.home_banner .content .top .info_content .left .data .square::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}
section.home_banner .content .top .info_content .left .data span {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  color: #050545;
  background: #fff;
  padding: 3px 10px;
  border-radius: 10px;
  margin: 0 0 0 10px;
}
@media (max-width: 1250px) {
  section.home_banner .content .top .info_content .left .data {
    font-size: 13px;
  }
  section.home_banner .content .top .info_content .left .data span {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  section.home_banner .content .top .info_content .left .data {
    height: 37px;
    padding: 0 0 0 25px;
    background: linear-gradient(90deg, #042374 0%, rgba(0, 0, 0, 0) 80.54%);
  }
  section.home_banner .content .top .info_content .left .data .square {
    left: 6px;
    width: 14px;
    height: 14px;
  }
  section.home_banner .content .top .info_content .left .data .square::before {
    width: 8px;
    height: 8px;
  }
  section.home_banner .content .top .info_content .left .data .square::after {
    width: 3px;
    height: 3px;
  }
  section.home_banner .content .top .info_content .left .data span {
    padding: 1px 6px;
    border-radius: 3px;
  }
}
section.home_banner .content .top .info_content .left .data {
  margin: 0 0 32px;
}
section.home_banner .content .top .info_content .left .title {
  margin: 0 0 32px;
}
section.home_banner .content .top .info_content .left .title * {
  font-weight: 300;
  font-size: 50px;
  line-height: 63px;
  color: #FFFFFF;
  margin: 0;
}
section.home_banner .content .top .info_content .left .title * b, section.home_banner .content .top .info_content .left .title * strong {
  font-weight: bold;
  color: #009BE4;
}
section.home_banner .content .top .info_content .left a {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  padding: 13px 16px;
  float: left;
  border: 2px solid #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
}
section.home_banner .content .top .info_content .left a::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(./../img/seta.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0 0 16px;
}
section.home_banner .content .top .info_content .left a.first {
  border-color: #0036F8;
  background: #0036F8;
  margin: 0 16px 0 0;
}
section.home_banner .content .top .info_content .right {
  width: 300px;
}
section.home_banner .content .top .info_content .right h2 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 0 16px;
  width: 100%;
  text-align: right;
}
section.home_banner .content .top .info_content .right .clock {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}
section.home_banner .content .top .info_content .right .clock > div {
  width: 146px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1px;
  backdrop-filter: blur(18px);
  background: rgba(0, 11, 39, 0.72);
  border-radius: 24px;
}
section.home_banner .content .top .info_content .right .clock > div h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 62px;
  color: #fff;
  margin: 0;
  text-align: center;
}
section.home_banner .content .top .info_content .right .clock > div p {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
  color: #4E9AD1;
  text-align: center;
  margin: 0;
}
section.home_banner .content .top .novidades_content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  gap: 10px;
  transition: all 1.5s;
  transition-delay: 1s;
}
section.home_banner .content .top .novidades_content h3 {
  font-size: 3.5rem;
  color: #fff;
  font-family: inherit;
}
section.home_banner .content .top .novidades_content progress {
  appearance: none;
  border-radius: 10px;
  overflow: hidden;
  width: 60%;
  height: 35px;
}
section.home_banner .content .top .novidades_content progress::-webkit-progress-value {
  background-color: #00a3ff;
}
section.home_banner .content .top .novidades_content p {
  font-size: 6.75rem;
  color: #fff;
}
section.home_banner .content .buttom {
  position: relative;
}
section.home_banner .content .buttom .mouse {
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  width: 33px;
  height: 54px;
  border: 3px solid #fff;
  border-radius: 15px;
}
section.home_banner .content .buttom .mouse::before {
  content: "";
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 10px;
  width: 5px;
  height: 10px;
  background: #fff;
  border-radius: 10px;
  animation-name: mouse_roll;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
section.home_banner .content .buttom .mouse::after {
  content: "";
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 10px;
  width: 5px;
  height: 10px;
  background: #fff;
  border-radius: 10px;
  opacity: 0.3;
}
@keyframes mouse_roll {
  20% {
    opacity: 0;
    width: 3px;
    top: 30px;
  }
  100% {
    opacity: 0;
  }
}
section.home_banner .content .buttom .alert {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  margin: 7px 0 0;
}
section.home_banner .content .buttom .alert p {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
  color: #fff;
  margin: 0;
}
@media (max-width: 1550px) {
  section.home_banner .content .top {
    height: 700px;
  }
  section.home_banner .content .top img.homem {
    width: 500px;
    right: 120px;
  }
  section.home_banner .content .top .info_content .left .data {
    margin: 0 0 25px;
  }
  section.home_banner .content .top .info_content .left .title * {
    font-size: 35px;
    line-height: 50px;
  }
  section.home_banner .content .top .novidades_content h3 {
    font-size: 3rem;
  }
  section.home_banner .content .top .novidades_content p {
    font-size: 4.75rem;
  }
}
@media (max-width: 1250px) {
  section.home_banner .content .top {
    height: 520px;
  }
  section.home_banner .content .top::after {
    background-size: contain;
    width: 114px;
    height: 26px;
  }
  section.home_banner .content .top img.homem {
    width: 400px;
    right: 40px;
  }
  section.home_banner .content .top .info_content {
    padding: 0 30px 35px;
  }
  section.home_banner .content .top .info_content .left .title * {
    font-size: 30px;
    line-height: 43px;
  }
  section.home_banner .content .top .info_content .left a {
    font-size: 16px;
  }
  section.home_banner .content .top .info_content .left a::after {
    margin: 0 0 0 10px;
  }
  section.home_banner .content .top .info_content .left a.first {
    margin: 0 10px 0 0;
  }
  section.home_banner .content .top .info_content .right {
    width: 239px;
  }
  section.home_banner .content .top .info_content .right h2 {
    font-size: 20px;
    line-height: 25px;
    margin: 0 0 10px;
  }
  section.home_banner .content .top .info_content .right .clock > div {
    width: 116px;
    height: 90px;
  }
  section.home_banner .content .top .info_content .right .clock > div h3 {
    font-size: 34px;
    line-height: 47px;
  }
  section.home_banner .content .top .info_content .right .clock > div p {
    font-size: 12px;
    line-height: 12px;
  }
  section.home_banner .content .top .novidades_content h3 {
    font-size: 2.5rem;
  }
  section.home_banner .content .top .novidades_content progress {
    height: 25px;
  }
  section.home_banner .content .top .novidades_content p {
    font-size: 3.75rem;
  }
  section.home_banner .content .buttom .alert p {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 1000px) {
  section.home_banner {
    padding: 6px 0 0;
  }
  section.home_banner .content .top {
    height: auto;
    padding: 400px 0 0;
    border-radius: 0;
    position: relative;
  }
  section.home_banner .content .top::before {
    height: 400px;
    border-radius: 10px 10px 30px 30px;
  }
  section.home_banner .content .top::after {
    display: none;
  }
  section.home_banner .content .top video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 400px;
    border-radius: 10px 10px 30px 30px;
    z-index: -1;
  }
  section.home_banner .content .top img.homem {
    width: 317px;
    right: 20px;
    bottom: initial;
    top: 37px;
  }
  section.home_banner .content .top .info_content {
    position: initial;
    padding: 30px 25px 35px;
  }
  section.home_banner .content .top .info_content .left {
    width: 100%;
  }
  section.home_banner .content .top .info_content .right {
    position: absolute;
    top: 155px;
    left: 25px;
  }
  section.home_banner .content .top .info_content .right h2 {
    text-align: left;
    font-size: 16px;
  }
  section.home_banner .content .top .info_content .right .clock {
    justify-content: flex-start;
  }
  section.home_banner .content .top .novidades_content {
    position: absolute;
    top: 0;
    width: 70%;
  }
  section.home_banner .content .top .novidades_content progress {
    width: 60%;
  }
  section.home_banner .content .top .novidades_content p {
    font-size: 3.5rem;
  }
  section.home_banner .content .buttom .mouse {
    display: none;
  }
}
@media (max-width: 600px) {
  section.home_banner .content .top {
    padding: 350px 0 0;
  }
  section.home_banner .content .top::before {
    height: 350px;
  }
  section.home_banner .content .top video {
    height: 350px;
  }
  section.home_banner .content .top img.homem {
    width: auto;
    height: 280px;
    right: 0;
    top: 71px;
  }
  section.home_banner .content .top .info_content {
    padding: 20px 20px 35px;
  }
  section.home_banner .content .top .info_content .left .data {
    margin: 0 0 15px;
  }
  section.home_banner .content .top .info_content .left .title * {
    font-size: 23px;
    line-height: 29px;
  }
  section.home_banner .content .top .info_content .left a {
    font-size: 12px;
    padding: 3px 14px;
  }
  section.home_banner .content .top .info_content .left a::after {
    margin: 0 0 0 7px;
  }
  section.home_banner .content .top .info_content .left a.first {
    margin: 0 6px 0 0;
  }
  section.home_banner .content .top .info_content .right {
    width: 100%;
    top: 242px;
    left: 20px;
  }
  section.home_banner .content .top .info_content .right h2 {
    font-size: 12px;
    line-height: 15px;
  }
  section.home_banner .content .top .info_content .right .clock {
    gap: 4px;
  }
  section.home_banner .content .top .info_content .right .clock > div {
    width: 80px;
    height: 60px;
    border-radius: 14px;
  }
  section.home_banner .content .top .info_content .right .clock > div h3 {
    font-size: 24px;
    line-height: 31px;
  }
  section.home_banner .content .top .info_content .right .clock > div p {
    font-size: 9px;
    line-height: 14px;
  }
  section.home_banner .content .top .novidades_content h3 {
    font-size: 1.5rem;
  }
  section.home_banner .content .top .novidades_content progress {
    height: 15px;
  }
  section.home_banner .content .top .novidades_content p {
    font-size: 2.5rem;
  }
  section.home_banner .content .buttom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  section.home_banner .content .buttom .alert {
    margin: 20px 0 0;
  }
  section.home_banner .content .buttom .alert p {
    font-size: 9px;
    line-height: 12px;
  }
  section.home_banner .content .buttom .alert img {
    width: 19px;
  }
}
section.home_sobre[data-animation=true] .content .fpv img {
  opacity: 0;
  transform: translateX(50px);
}
section.home_sobre .content {
  margin: 0 auto;
  padding-top: 130px;
  padding-bottom: 30px;
  overflow: hidden;
}
section.home_sobre .content .fpv {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 95px;
}
section.home_sobre .content .fpv img {
  transition: all 0.5s;
  width: 33.3333333333%;
}
section.home_sobre .content .fpv img.f {
  transition-delay: 0.3s;
}
section.home_sobre .content .fpv img.p {
  transition-delay: 0.6s;
}
section.home_sobre .content .fpv img.v {
  transition-delay: 0.9s;
}
section.home_sobre .content .fpv img.ano {
  transition-delay: 1.2s;
  position: absolute;
  width: 10%;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}
section.home_sobre .content .text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.home_sobre .content .text h2 {
  font-weight: 200;
  width: 230px;
  font-size: 51px;
  line-height: 63px;
  margin: 0;
  background: linear-gradient(130deg, #FFFFFF, #8DB7FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.home_sobre .content .text p {
  width: 67%;
  font-weight: 300;
  font-size: 25px;
  line-height: 41px;
  margin: 0;
  background: linear-gradient(130deg, #FFFFFF, #8DB7FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.home_sobre .content .infos {
  padding: 64px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
section.home_sobre .content .infos .item {
  width: calc((100% - 50px) / 3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 25px;
}
section.home_sobre .content .infos .item img {
  width: 165px;
  margin: 0 0 -20px;
  transform: translateX(-22px);
}
section.home_sobre .content .infos .item h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 33px;
  margin: 0 0 10px;
  padding: 0 0 0 0;
  color: #fff;
}
section.home_sobre .content .infos .item p {
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: rgba(214, 224, 241, 0.6980392157);
  margin: 0;
}
@media (max-width: 1000px) {
  section.home_sobre .content {
    padding-top: 90px;
  }
  section.home_sobre .content .fpv {
    width: 550px;
    margin: 0 auto 50px;
  }
  section.home_sobre .content .fpv img.ano {
    width: 66px;
    top: 51px;
  }
  section.home_sobre .content .text h2 {
    width: 100%;
    font-size: 42px;
    line-height: 56px;
    margin: 0 0 15px;
  }
  section.home_sobre .content .text p {
    width: 100%;
    font-size: 20px;
    line-height: 35px;
  }
  section.home_sobre .content .infos {
    padding: 50px 0 0;
  }
  section.home_sobre .content .infos .item {
    width: 100%;
  }
}
@media (max-width: 600px) {
  section.home_sobre .content {
    padding: 55px 20px 30px;
  }
  section.home_sobre .content .fpv {
    width: 300px;
    margin: 0 auto 40px;
  }
  section.home_sobre .content .fpv img {
    width: 100px;
  }
  section.home_sobre .content .fpv img.ano {
    width: 32px;
    top: 28px;
  }
  section.home_sobre .content .text h2 {
    font-size: 33px;
    line-height: 40px;
    margin: 0 0 15px;
  }
  section.home_sobre .content .text p {
    font-size: 16px;
    line-height: 26px;
  }
  section.home_sobre .content .infos {
    gap: 8px;
    padding: 30px 0 0;
  }
  section.home_sobre .content .infos .item {
    padding: 24px;
  }
  section.home_sobre .content .infos .item img {
    height: 125px;
    width: auto;
  }
  section.home_sobre .content .infos .item h3 {
    font-size: 20px;
    line-height: 27px;
  }
  section.home_sobre .content .infos .item p {
    font-size: 12px;
    line-height: 19px;
  }
}
section.home_video {
  position: relative;
  padding: 100px 0 0;
}
section.home_video::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 290px;
  background: #fff;
}
@media (max-width: 600px) {
  section.home_video {
    padding: 0;
  }
  section.home_video::before {
    display: none;
  }
}
section.home_mapa {
  background: #fff;
}
section.home_mapa .content {
  padding-top: 100px;
  padding-bottom: 40px;
}
section.home_mapa .content h2 {
  display: flex;
  align-items: center;
  margin: 0 0 80px;
  font-weight: 700;
  font-size: 33px;
  line-height: 43px;
  color: #000b27;
}
section.home_mapa .content h2 img {
  margin: 0 8px 0 0;
  width: 45px;
}
section.home_mapa .content h2 span {
  color: #2173FF;
}
section.home_mapa .content > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
section.home_mapa .content > div .mapa {
  margin: 23px 0 0;
  position: relative;
  width: 500px;
  background: #fff;
  border-radius: 30px;
}
section.home_mapa .content > div .mapa img {
  width: 100%;
  height: auto;
}
section.home_mapa .content > div .mapa button {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #0036F8;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #fff;
  transform: translate(-50%, -50%);
}
section.home_mapa .content > div .mapa button:before, section.home_mapa .content > div .mapa button:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  animation-name: dotCircle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  border-radius: 50%;
  pointer-events: none;
  box-sizing: initial;
}
section.home_mapa .content > div .mapa button:after {
  animation-delay: 1.5s;
}
@keyframes dotCircle {
  0% {
    border: 0px solid rgba(255, 255, 255, 0.9);
  }
  100% {
    border: 15px solid rgba(255, 255, 255, 0);
  }
}
section.home_mapa .content > div .mapa button > div {
  position: absolute;
  background: #0036F8;
  color: #fff;
  right: 0;
  top: 0;
  transform: translate(100%, -100%);
  padding: 5px 10px;
  width: 120px;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 10px 10px 0;
  font-size: 10px;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
}
section.home_mapa .content > div .mapa button:hover {
  z-index: 50;
}
section.home_mapa .content > div .mapa button:hover > div {
  opacity: 1;
  transform: translate(calc(100% + 5px), calc(-100% - 5px));
}
@media (max-width: 1000px) {
  section.home_mapa .content > div .mapa {
    margin: 0 auto 30px;
    position: relative;
    width: 540px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
  }
}
@media (max-width: 600px) {
  section.home_mapa .content > div .mapa {
    margin: 0 auto;
  }
  section.home_mapa .content > div .mapa button {
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
  }
  section.home_mapa .content > div .mapa button svg {
    display: none;
  }
  section.home_mapa .content > div .mapa button > div {
    padding: 5px 5px;
    width: 70px;
    min-height: 30px;
    font-size: 8px;
  }
  section.home_mapa .content > div .mapa button:hover > div {
    transform: translate(calc(100% + 1px), calc(-100% - 1px));
  }
}
section.home_mapa .content > div .map_info {
  width: calc(100% - 550px);
}
section.home_mapa .content > div .map_info > h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 40px;
  color: #000;
  margin: 0 0 25px;
}
section.home_mapa .content > div .map_info > a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 12px 12px 15px;
  background: #0036F8;
  color: #fff;
  width: fit-content;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  border-radius: 16px;
  margin: 0 0 32px;
}
section.home_mapa .content > div .map_info > a img {
  margin: 0 12px 0 0;
  width: 40px;
}
section.home_mapa .content > div .map_info > a::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(./../../assets/navbar/seta.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0 0 12px;
}
section.home_mapa .content > div .map_info p.desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  color: #000;
  margin: 0 0 32px;
}
section.home_mapa .content > div .map_info > div h4 {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
  color: #000;
  margin: 0 0 10px;
}
section.home_mapa .content > div .map_info > div h4::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #2173FF;
  margin: 0 8px 0 0;
}
section.home_mapa .content > div .map_info > div p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #666666;
  margin: 0 0 32px;
}
section.home_mapa .content > div .map_info > div .map {
  position: relative;
}
section.home_mapa .content > div .map_info > div .map .mapa {
  width: 100%;
  height: 135px;
  border-radius: 26px;
  overflow: hidden;
  pointer-events: none;
}
section.home_mapa .content > div .map_info > div .map .mapa .mapboxgl-ctrl-logo, section.home_mapa .content > div .map_info > div .map .mapa .mapboxgl-control-container {
  display: none;
}
section.home_mapa .content > div .map_info > div .map a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
  background: #0036F8;
  padding: 12px 12px 12px 15px;
  border-radius: 16px;
}
section.home_mapa .content > div .map_info > div .map a img {
  margin: 0 12px 0 0;
  width: 25px;
}
section.home_mapa .content > div .map_info > div .map a::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(./../../assets/navbar/seta.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0 0 12px;
}
@media (max-width: 1000px) {
  section.home_mapa .content {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  section.home_mapa .content h2 {
    position: relative;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 0 60px;
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 35px;
  }
  section.home_mapa .content h2 img {
    position: absolute;
    left: 0;
  }
  section.home_mapa .content > div {
    flex-wrap: wrap;
  }
  section.home_mapa .content > div .map_info {
    width: 100%;
  }
  section.home_mapa .content > div .map_info > h3 {
    max-width: 700px;
    font-size: 27px;
    line-height: 36px;
    max-width: none;
  }
  section.home_mapa .content > div .map_info p.desc {
    max-width: 700px;
    max-width: none;
  }
  section.home_mapa .content > div .map_info > div {
    max-width: none;
  }
  section.home_mapa .content > div .map_info > div .map {
    max-width: none;
  }
}
@media (max-width: 600px) {
  section.home_mapa .content {
    padding: 40px 20px 20px;
  }
  section.home_mapa .content h2 {
    font-size: 24px;
    line-height: 30px;
    padding: 0 0 0 45px;
  }
  section.home_mapa .content h2 img {
    width: 36px;
  }
  section.home_mapa .content h2 span {
    font-size: 17px;
  }
  section.home_mapa .content > div {
    gap: 35px;
  }
  section.home_mapa .content > div .map_info > h3 {
    font-size: 19px;
    line-height: 27px;
    margin: 0 0 20px;
  }
  section.home_mapa .content > div .map_info > a {
    font-size: 14px;
  }
  section.home_mapa .content > div .map_info > a::after {
    width: 15px;
    height: 15px;
  }
  section.home_mapa .content > div .map_info > a img {
    margin: 0 8px 0 0;
    width: 35px;
  }
  section.home_mapa .content > div .map_info p.desc {
    font-size: 13px;
    line-height: 20px;
    margin: 0 0 24px;
  }
  section.home_mapa .content > div .map_info > div p {
    font-size: 11px;
    line-height: 18px;
    margin: 0 0 20px;
  }
  section.home_mapa .content > div .map_info > div .map a {
    font-size: 16px;
    width: 193px;
  }
}
section.home_regiao {
  background: #fff;
  margin-top: -1px;
  overflow: hidden;
}
section.home_regiao .content {
  padding-top: 40px;
  padding-bottom: 60px;
}
section.home_regiao .content .title {
  margin: 0 0 57px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
section.home_regiao .content .title > img {
  width: 50px;
  height: auto;
}
section.home_regiao .content .title h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 45px;
  color: #000b27;
  margin: 0;
}
section.home_regiao .content .title span {
  margin: 0 12px;
  height: 1px;
  background: rgba(170, 177, 191, 0.45);
}
section.home_regiao .content .title .arrows {
  width: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.home_regiao .content .title .arrows button {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #AAB1BF;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.home_regiao .content .title .arrows button.next {
  transform: rotate(180deg);
}
@media (max-width: 1000px) {
  section.home_regiao .content .title h2 {
    font-size: 30px;
    line-height: 40px;
  }
  section.home_regiao .content .title .arrows {
    width: 95px;
  }
  section.home_regiao .content .title .arrows button {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
  section.home_regiao .content .title .arrows button img {
    width: 19px;
  }
}
@media (max-width: 600px) {
  section.home_regiao .content .title > img {
    width: 31px;
  }
  section.home_regiao .content .title h2 {
    font-size: 24px;
    line-height: 34px;
  }
  section.home_regiao .content .title span, section.home_regiao .content .title .arrows {
    display: none;
  }
}
section.home_regiao .content .title h2 {
  margin: 0 0 0 12px;
}
section.home_regiao .content .title span {
  width: calc(100% - 515px);
  background: rgba(170, 177, 191, 0.64);
}
section.home_regiao .content .title .arrows button {
  border: 1px solid #C8D5E1;
}
section.home_regiao .content .caroussel_content .slick-list {
  overflow: visible;
}
section.home_regiao .content .caroussel_content .item {
  width: 230px !important;
  min-height: 190px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 18px;
  padding: 16px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 20px 0 0;
}
section.home_regiao .content .caroussel_content .item .img {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 10px;
}
section.home_regiao .content .caroussel_content .item .img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
section.home_regiao .content .caroussel_content .item h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  color: #000;
  margin: 0 0 12px;
}
section.home_regiao .content .caroussel_content .item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  color: #AAAAAA;
  margin: 0;
}
section.home_regiao .content .caroussel_content .item p span {
  color: #444444;
}
@media (max-width: 1000px) {
  section.home_regiao .content .title {
    margin: 0 0 40px;
  }
  section.home_regiao .content .title span {
    width: calc(100% - 453px);
  }
}
@media (max-width: 600px) {
  section.home_regiao .content {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  section.home_regiao .content .title {
    margin: 0 0 35px;
  }
  section.home_regiao .content .title h2 {
    margin: 0 0 0 6px;
    font-size: 24px;
    line-height: 31px;
  }
  section.home_regiao .content .title span {
    display: none;
  }
  section.home_regiao .content .title .arrows {
    display: none;
  }
  section.home_regiao .content .caroussel_content .item {
    width: 145px !important;
    min-height: 140px;
    padding: 10px;
    margin: 0 8px 0 0;
  }
  section.home_regiao .content .caroussel_content .item .img {
    margin: 0 0 6px;
  }
  section.home_regiao .content .caroussel_content .item h3 {
    font-size: 12px;
    line-height: 17px;
    margin: 0 0 10px;
  }
  section.home_regiao .content .caroussel_content .item p {
    font-size: 11px;
    line-height: 15px;
  }
}
section.home_expo {
  position: relative;
  background: #fff;
  margin-top: -1px;
  overflow: hidden;
}
section.home_expo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 170px;
  background: #135BE4;
}
section.home_expo .content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 40px;
}
section.home_expo .content .seja_expo {
  margin: 90px 0 0;
  padding: 30px 30px;
  width: 100%;
  background: #000b27;
  border-radius: 35px;
  display: flex;
  gap: 50px;
  align-items: center;
}
section.home_expo .content .seja_expo > img {
  width: 200px;
}
section.home_expo .content .seja_expo .text {
  width: calc(100% - 190px - 50px);
  max-width: 800px;
}
section.home_expo .content .seja_expo .text h3 {
  font-weight: 700;
  font-size: 37px;
  line-height: 50px;
  color: #fff;
  margin: 0 0 16px;
}
section.home_expo .content .seja_expo .text p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  margin: 0 0 16px;
}
section.home_expo .content .seja_expo .text a {
  padding: 9px 16px;
  border: 2px solid #fff;
  border-radius: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  display: flex;
  width: fit-content;
  align-items: center;
}
section.home_expo .content .seja_expo .text a::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(./../img/seta.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0 0 12px;
}
@media (max-width: 1000px) {
  section.home_expo .content .seja_expo .text a {
    font-size: 16px;
    line-height: 24px;
    border-radius: 9px;
  }
  section.home_expo .content .seja_expo .text a::after {
    width: 16px;
    height: 16px;
    margin: 0 0 0 7px;
  }
}
@media (max-width: 1000px) {
  section.home_expo .content .seja_expo {
    gap: 20px;
  }
  section.home_expo .content .seja_expo img {
    width: 160px;
  }
  section.home_expo .content .seja_expo .text {
    width: calc(100% - 160px - 30px);
  }
  section.home_expo .content .seja_expo .text h3 {
    font-size: 28px;
    line-height: 40px;
    margin: 0 0 5px;
  }
  section.home_expo .content .seja_expo .text p {
    font-size: 17px;
    line-height: 27px;
  }
  section.home_expo .content .seja_expo .text a {
    padding: 10px 13px;
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  section.home_expo .content {
    padding: 30px 20px 20px;
  }
  section.home_expo .content .title {
    margin: 0 0 30px;
  }
  section.home_expo .content .title > img {
    width: 31px;
  }
  section.home_expo .content .title h2 {
    margin: 0 0 0 6px;
    font-size: 21px;
    line-height: 31px;
  }
  section.home_expo .content .caroussel_content {
    margin: 0 0 60px;
  }
  section.home_expo .content .caroussel_content .item {
    margin: 0 30px 0 0;
    width: 120px !important;
    height: 46px;
  }
  section.home_expo .content .seja_expo {
    margin: 60px 0 0;
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
    padding: 25px 25px 30px;
  }
  section.home_expo .content .seja_expo img {
    width: 120px;
  }
  section.home_expo .content .seja_expo .text {
    width: 100%;
  }
  section.home_expo .content .seja_expo .text h3 {
    font-size: 24px;
    line-height: 31px;
    margin: 0 0 12px;
  }
  section.home_expo .content .seja_expo .text p {
    font-size: 16px;
    line-height: 22px;
  }
}
section.home_atracoes {
  margin-top: -1px;
  background: #135BE4;
  overflow: hidden;
}
section.home_atracoes .content {
  padding-top: 40px;
  padding-bottom: 135px;
}
section.home_atracoes .content .title {
  margin: 0 0 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
section.home_atracoes .content .title > img {
  width: 50px;
  height: auto;
}
section.home_atracoes .content .title h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 45px;
  color: #000b27;
  margin: 0;
}
section.home_atracoes .content .title span {
  margin: 0 12px;
  height: 1px;
  background: rgba(170, 177, 191, 0.45);
}
section.home_atracoes .content .title .arrows {
  width: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.home_atracoes .content .title .arrows button {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #AAB1BF;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.home_atracoes .content .title .arrows button.next {
  transform: rotate(180deg);
}
@media (max-width: 1000px) {
  section.home_atracoes .content .title h2 {
    font-size: 30px;
    line-height: 40px;
  }
  section.home_atracoes .content .title .arrows {
    width: 95px;
  }
  section.home_atracoes .content .title .arrows button {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
  section.home_atracoes .content .title .arrows button img {
    width: 19px;
  }
}
@media (max-width: 600px) {
  section.home_atracoes .content .title > img {
    width: 31px;
  }
  section.home_atracoes .content .title h2 {
    font-size: 24px;
    line-height: 34px;
  }
  section.home_atracoes .content .title span, section.home_atracoes .content .title .arrows {
    display: none;
  }
}
section.home_atracoes .content .title h2 {
  color: #fff;
}
section.home_atracoes .content .title span {
  margin: 0 12px;
  width: calc(100% - 301px);
  background: rgba(255, 255, 255, 0.64);
}
section.home_atracoes .content .title .arrows button {
  border: 1px solid #fff;
}
section.home_atracoes .content .carousel_content .slick-list {
  overflow: visible;
}
section.home_atracoes .content .carousel_content .item {
  width: 350px !important;
  margin: 0 30px 0 0;
}
section.home_atracoes .content .carousel_content .item .img {
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 12px;
}
section.home_atracoes .content .carousel_content .item .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section.home_atracoes .content .carousel_content .item h3 {
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
  color: #fff;
  margin: 0 0 12px;
}
section.home_atracoes .content .carousel_content .item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: #fff;
  margin: 0;
}
@media (max-width: 1000px) {
  section.home_atracoes .content {
    padding-top: 40px;
    padding-bottom: 120px;
  }
  section.home_atracoes .content .title span {
    width: calc(100% - 260px);
  }
  section.home_atracoes .content .carousel_content .item h3 {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  section.home_atracoes .content {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  section.home_atracoes .content .title {
    margin: 0 0 33px;
  }
  section.home_atracoes .content .title h2 {
    font-size: 24px;
    line-height: 30px;
  }
  section.home_atracoes .content .title span {
    display: none;
  }
  section.home_atracoes .content .title .arrows {
    display: none;
  }
  section.home_atracoes .content .carousel_content .item {
    width: 230px !important;
    margin: 0 16px 0 0;
  }
  section.home_atracoes .content .carousel_content .item .img {
    height: 165px;
    margin: 0 0 6px;
    border-radius: 10px;
  }
  section.home_atracoes .content .carousel_content .item h3 {
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 6px;
  }
  section.home_atracoes .content .carousel_content .item p {
    font-size: 12px;
    line-height: 16px;
  }
}
section.home_palestrantes {
  position: relative;
  background-image: url(./../img/home/home_palestrantes/palestrante_bg.png);
  background-position: center top;
  background-repeat: no-repeat;
}
section.home_palestrantes .content {
  padding-bottom: 70px;
}
section.home_palestrantes .content span.topo {
  position: absolute;
  width: 730px;
  height: 2px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  top: 105px;
}
section.home_palestrantes .content span.topo::before, section.home_palestrantes .content span.topo::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  left: 0;
}
section.home_palestrantes .content span.topo::after {
  left: initial;
  right: 0;
}
section.home_palestrantes .content .fotos {
  position: relative;
  display: flex;
  padding: 73px 0 0 20px;
  margin: 0 auto 33px;
  width: fit-content;
}
section.home_palestrantes .content .fotos > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #fff;
  overflow: hidden;
  margin: 0 0 0 -20px;
}
section.home_palestrantes .content .fotos > div img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section.home_palestrantes .content .fotos .last {
  background: linear-gradient(312.22deg, #081735 21.13%, #00C2FF 73.9%);
}
section.home_palestrantes .content > h2 {
  font-weight: 600;
  font-size: 45px;
  line-height: 60px;
  color: #fff;
  text-align: center;
  margin: 0 0 33px;
}
section.home_palestrantes .content > p {
  width: 100%;
  max-width: 900px;
  font-weight: 300;
  font-size: 24px;
  line-height: 33px;
  color: #DAE1F0;
  text-align: center;
  margin: 0 auto 85px;
}
section.home_palestrantes .content .dia_content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 85px;
}
section.home_palestrantes .content .dia_content h3 {
  font-weight: 700;
  font-size: 33px;
  line-height: 42px;
  color: #fff;
  margin: 0 0 53px;
  text-align: center;
}
section.home_palestrantes .content .dia_content .item {
  width: 100%;
  background: rgba(250, 250, 250, 0.968627451);
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 8px;
  cursor: pointer;
}
section.home_palestrantes .content .dia_content .item * {
  pointer-events: none;
}
section.home_palestrantes .content .dia_content .item[data-open=true] .top button {
  background: #000b27;
  transform: initial;
}
section.home_palestrantes .content .dia_content .item[data-open=true] .bottom {
  display: flex;
}
section.home_palestrantes .content .dia_content .item .top {
  position: relative;
  padding: 29px 52px 29px 165px;
  min-height: 130px;
  background: #fff;
  display: flex;
  align-items: center;
}
section.home_palestrantes .content .dia_content .item .top .horario {
  position: absolute;
  left: 16px;
  top: 16px;
  background: linear-gradient(140.16deg, #0036F8 22.74%, #135BE4 66.35%);
  width: 115px;
  height: 98px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 25px;
  line-height: 10px;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  color: #fff;
}
section.home_palestrantes .content .dia_content .item .top .horario .clock {
  position: absolute;
  right: 0;
  top: 0;
  width: 25px;
  height: 25px;
  border: 4px solid #0036F8;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  transform: translate(30%, -30%);
}
section.home_palestrantes .content .dia_content .item .top .horario .clock img {
  width: 9px;
}
section.home_palestrantes .content .dia_content .item .top .horario span {
  font-weight: 400;
  font-size: 16px;
  line-height: 0;
  margin: 18px 0 10px;
}
section.home_palestrantes .content .dia_content .item .top .info {
  width: calc(100% - 40px);
  padding: 0 30px 0 0;
}
section.home_palestrantes .content .dia_content .item .top .info h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin: 0 0 12px;
  color: #000b27;
}
section.home_palestrantes .content .dia_content .item .top .info p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #AAAAAA;
  margin: 0;
}
section.home_palestrantes .content .dia_content .item .top .info p span {
  color: #0036F8;
  padding: 0 0 0 4px;
}
section.home_palestrantes .content .dia_content .item .top button {
  width: 40px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: #0036F8;
  transform: rotate(180deg);
}
section.home_palestrantes .content .dia_content .item .bottom {
  padding: 17px 52px 17px 165px;
  align-items: center;
  display: none;
}
section.home_palestrantes .content .dia_content .item .bottom .foto {
  width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
  overflow: hidden;
}
section.home_palestrantes .content .dia_content .item .bottom .foto img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section.home_palestrantes .content .dia_content .item .bottom p {
  margin: 0 0 0 27px;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #111111;
  max-width: 600px;
}
@media (max-width: 1000px) {
  section.home_palestrantes .content .dia_content .item .top {
    padding: 20px 20px 20px 165px;
  }
  section.home_palestrantes .content .dia_content .item .top .info h4 {
    font-size: 18px;
    line-height: 24px;
  }
  section.home_palestrantes .content .dia_content .item .top .info p {
    font-size: 16px;
    line-height: 23px;
  }
  section.home_palestrantes .content .dia_content .item .bottom {
    padding: 17px 30px 17px 16px;
  }
  section.home_palestrantes .content .dia_content .item .bottom .foto {
    width: 130px;
    height: 130px;
  }
  section.home_palestrantes .content .dia_content .item .bottom p {
    font-size: 13px;
    line-height: 20px;
    max-width: calc(100% - 160px);
    margin: 0 0 0 19px;
  }
}
@media (max-width: 600px) {
  section.home_palestrantes .content .dia_content .item {
    margin: 0 0 5px;
  }
  section.home_palestrantes .content .dia_content .item .top {
    padding: 11px 11px 11px 110px;
  }
  section.home_palestrantes .content .dia_content .item .top .horario {
    font-size: 17px;
    width: 80px;
    height: 70px;
    padding: 11px;
    left: 11px;
    top: 11px;
  }
  section.home_palestrantes .content .dia_content .item .top .horario span {
    font-size: 12px;
    margin: 11px 0 4px;
  }
  section.home_palestrantes .content .dia_content .item .top .info {
    width: calc(100% - 20px);
    padding: 0 10px 0 0;
  }
  section.home_palestrantes .content .dia_content .item .top .info h4 {
    font-size: 14px;
    line-height: 19px;
    margin: 0 0 7px;
  }
  section.home_palestrantes .content .dia_content .item .top .info p {
    font-size: 12px;
    line-height: 16px;
  }
  section.home_palestrantes .content .dia_content .item .top button {
    width: 28px;
    height: 27px;
    border-radius: 7px;
  }
  section.home_palestrantes .content .dia_content .item .top button img {
    width: 15px;
  }
  section.home_palestrantes .content .dia_content .item .bottom {
    padding: 15px 10px;
  }
  section.home_palestrantes .content .dia_content .item .bottom .foto {
    width: 90px;
    height: 90px;
    border-radius: 19px;
  }
  section.home_palestrantes .content .dia_content .item .bottom p {
    font-size: 10px;
    line-height: 14px;
    max-width: calc(100% - 102px);
    margin: 0 0 0 12px;
  }
}
section.home_palestrantes .content .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
section.home_palestrantes .content .buttons a {
  padding: 9px 16px;
  border: 2px solid #fff;
  border-radius: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  display: flex;
  width: fit-content;
  align-items: center;
}
section.home_palestrantes .content .buttons a::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(./../img/seta.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0 0 12px;
}
@media (max-width: 1000px) {
  section.home_palestrantes .content .buttons a {
    font-size: 16px;
    line-height: 24px;
    border-radius: 9px;
  }
  section.home_palestrantes .content .buttons a::after {
    width: 16px;
    height: 16px;
    margin: 0 0 0 7px;
  }
}
section.home_palestrantes .content .buttons a.first {
  border-color: #0036F8;
  background: #0036F8;
}
@media (max-width: 1000px) {
  section.home_palestrantes {
    background-size: 1510px;
  }
  section.home_palestrantes .content {
    padding-bottom: 70px;
  }
  section.home_palestrantes .content span.topo {
    width: 580px;
    top: 83px;
  }
  section.home_palestrantes .content .fotos {
    padding: 53px 0 0 20px;
  }
  section.home_palestrantes .content > h2 {
    font-size: 35px;
    line-height: 40px;
  }
  section.home_palestrantes .content > p {
    max-width: 770px;
    font-size: 18px;
    line-height: 28px;
    padding: 0 25px;
  }
  section.home_palestrantes .content .dia_content h3 {
    font-size: 28px;
    line-height: 42px;
  }
  section.home_palestrantes .content .buttons a {
    font-size: 16px;
    line-height: 26px;
  }
  section.home_palestrantes .content .buttons a::after {
    margin: 0 0 0 10px;
  }
}
@media (max-width: 600px) {
  section.home_palestrantes {
    background-image: none;
  }
  section.home_palestrantes .content {
    padding-bottom: 40px;
  }
  section.home_palestrantes .content span.topo {
    display: none;
  }
  section.home_palestrantes .content .fotos {
    padding: 0 0 0 15px;
    transform: translateY(-50%);
    margin: 0 auto 10px;
  }
  section.home_palestrantes .content .fotos > div {
    width: 50px;
    height: 50px;
    margin: 0 0 0 -15px;
  }
  section.home_palestrantes .content .fotos .last svg {
    height: auto;
    width: 14px;
  }
  section.home_palestrantes .content > h2 {
    font-size: 32px;
    line-height: 38px;
    margin: 0 0 20px;
  }
  section.home_palestrantes .content > p {
    font-size: 16px;
    line-height: 22px;
    margin: 0 auto 40px;
    padding: 0 20px;
  }
  section.home_palestrantes .content .dia_content {
    margin: 0 auto 55px;
  }
  section.home_palestrantes .content .dia_content h3 {
    font-size: 22px;
    line-height: 29px;
    margin: 0 0 30px;
  }
  section.home_palestrantes .content .buttons {
    gap: 7px;
  }
  section.home_palestrantes .content .buttons a {
    font-size: 12px;
    line-height: 18px;
    padding: 10px 10px;
    border-radius: 14px;
  }
}
section.home_feiras {
  overflow: hidden;
  background: #fff;
}
section.home_feiras .content {
  padding-top: 85px;
  padding-bottom: 50px;
}
section.home_feiras .content .title {
  margin: 0 0 58px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
section.home_feiras .content .title > img {
  width: 50px;
  height: auto;
}
section.home_feiras .content .title h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 45px;
  color: #000b27;
  margin: 0;
}
section.home_feiras .content .title span {
  margin: 0 12px;
  height: 1px;
  background: rgba(170, 177, 191, 0.45);
}
section.home_feiras .content .title .arrows {
  width: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.home_feiras .content .title .arrows button {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #AAB1BF;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.home_feiras .content .title .arrows button.next {
  transform: rotate(180deg);
}
@media (max-width: 1000px) {
  section.home_feiras .content .title h2 {
    font-size: 30px;
    line-height: 40px;
  }
  section.home_feiras .content .title .arrows {
    width: 95px;
  }
  section.home_feiras .content .title .arrows button {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
  section.home_feiras .content .title .arrows button img {
    width: 19px;
  }
}
@media (max-width: 600px) {
  section.home_feiras .content .title > img {
    width: 31px;
  }
  section.home_feiras .content .title h2 {
    font-size: 24px;
    line-height: 34px;
  }
  section.home_feiras .content .title span, section.home_feiras .content .title .arrows {
    display: none;
  }
}
section.home_feiras .content .title h2 {
  color: #000b27;
}
section.home_feiras .content .title span {
  width: calc(100% - 420px);
}
section.home_feiras .content .title .arrows button {
  border: 1px solid #AAB1BF;
}
section.home_feiras .content .carousel_content .slick-list {
  overflow: visible;
}
section.home_feiras .content .carousel_content .item {
  background: #000b27;
  width: 450px !important;
  border-radius: 35px;
  background: #000b27;
  margin: 0 20px 0 0;
  padding: 30px 35px 40px;
}
section.home_feiras .content .carousel_content .item > img {
  margin: 0 0 25px;
  width: 120px;
}
section.home_feiras .content .carousel_content .item .data {
  position: relative;
  background: linear-gradient(90deg, #042374 0%, rgba(0, 0, 0, 0) 80.54%);
  padding: 0 0 0 42px;
  width: 300px;
  height: 50px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  border-radius: 8px;
  text-transform: uppercase;
}
section.home_feiras .content .carousel_content .item .data .square {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #022394;
}
section.home_feiras .content .carousel_content .item .data .square::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #1860ff;
}
section.home_feiras .content .carousel_content .item .data .square::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}
section.home_feiras .content .carousel_content .item .data span {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  color: #050545;
  background: #fff;
  padding: 3px 10px;
  border-radius: 10px;
  margin: 0 0 0 10px;
}
@media (max-width: 1250px) {
  section.home_feiras .content .carousel_content .item .data {
    font-size: 13px;
  }
  section.home_feiras .content .carousel_content .item .data span {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  section.home_feiras .content .carousel_content .item .data {
    height: 37px;
    padding: 0 0 0 25px;
    background: linear-gradient(90deg, #042374 0%, rgba(0, 0, 0, 0) 80.54%);
  }
  section.home_feiras .content .carousel_content .item .data .square {
    left: 6px;
    width: 14px;
    height: 14px;
  }
  section.home_feiras .content .carousel_content .item .data .square::before {
    width: 8px;
    height: 8px;
  }
  section.home_feiras .content .carousel_content .item .data .square::after {
    width: 3px;
    height: 3px;
  }
  section.home_feiras .content .carousel_content .item .data span {
    padding: 1px 6px;
    border-radius: 3px;
  }
}
section.home_feiras .content .carousel_content .item .data {
  margin: 0 0 16px;
}
section.home_feiras .content .carousel_content .item h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 42px;
  margin: 0 0 10px;
  color: #fff;
}
section.home_feiras .content .carousel_content .item .desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #FFFFFF;
  margin: 0 0 16px;
}
section.home_feiras .content .carousel_content .item .desc * {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #FFFFFF;
  margin: 0;
}
section.home_feiras .content .carousel_content .item a {
  border-color: #0036F8 !important;
  background: #0036F8;
  padding: 9px 16px;
  border: 2px solid #fff;
  border-radius: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  display: flex;
  width: fit-content;
  align-items: center;
}
section.home_feiras .content .carousel_content .item a::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(./../img/seta.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0 0 12px;
}
@media (max-width: 1000px) {
  section.home_feiras .content .carousel_content .item a {
    font-size: 16px;
    line-height: 24px;
    border-radius: 9px;
  }
  section.home_feiras .content .carousel_content .item a::after {
    width: 16px;
    height: 16px;
    margin: 0 0 0 7px;
  }
}
@media (max-width: 1000px) {
  section.home_feiras .content .title span {
    width: calc(100% - 363px);
  }
  section.home_feiras .content .carousel_content .item {
    width: 360px !important;
    border-radius: 25px;
    padding: 30px 25px 30px;
  }
  section.home_feiras .content .carousel_content .item > img {
    width: 80px;
    margin: 0 0 20px;
  }
  section.home_feiras .content .carousel_content .item .data {
    width: 330px;
  }
  section.home_feiras .content .carousel_content .item h3 {
    font-size: 25px;
    line-height: 40px;
  }
  section.home_feiras .content .carousel_content .item .desc, section.home_feiras .content .carousel_content .item .desc * {
    font-size: 14px;
    line-height: 23px;
  }
}
@media (max-width: 600px) {
  section.home_feiras .content {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  section.home_feiras .content .title {
    margin: 0 0 31px;
  }
  section.home_feiras .content .title h2 {
    font-size: 24px;
    line-height: 30px;
  }
  section.home_feiras .content .title span {
    display: none;
  }
  section.home_feiras .content .title .arrows {
    display: none;
  }
  section.home_feiras .content .carousel_content .item {
    padding: 24px;
    width: 300px !important;
    margin: 0 10px 0 0;
  }
  section.home_feiras .content .carousel_content .item > img {
    width: 60px;
  }
  section.home_feiras .content .carousel_content .item .data {
    width: 230px;
  }
  section.home_feiras .content .carousel_content .item h3 {
    font-size: 21px;
    line-height: 30px;
    margin: 0 0 10px;
  }
  section.home_feiras .content .carousel_content .item .desc, section.home_feiras .content .carousel_content .item .desc * {
    font-size: 13px;
    line-height: 21px;
  }
  section.home_feiras .content .carousel_content .item a {
    border-radius: 14px;
    font-size: 15px;
    line-height: 20px;
  }
}
section.home_anteriores {
  background: #fff;
  overflow: hidden;
  border-radius: 0 0 65px 65px;
}
section.home_anteriores .content {
  width: 100%;
  max-width: 1250px;
  padding: 0 25px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 100px;
}
section.home_anteriores .content .title {
  margin: 0 0 58px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
section.home_anteriores .content .title > img {
  width: 50px;
  height: auto;
}
section.home_anteriores .content .title h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 45px;
  color: #000b27;
  margin: 0;
}
section.home_anteriores .content .title span {
  margin: 0 12px;
  height: 1px;
  background: rgba(170, 177, 191, 0.45);
}
section.home_anteriores .content .title .arrows {
  width: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.home_anteriores .content .title .arrows button {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #AAB1BF;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.home_anteriores .content .title .arrows button.next {
  transform: rotate(180deg);
}
@media (max-width: 1000px) {
  section.home_anteriores .content .title h2 {
    font-size: 30px;
    line-height: 40px;
  }
  section.home_anteriores .content .title .arrows {
    width: 95px;
  }
  section.home_anteriores .content .title .arrows button {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
  section.home_anteriores .content .title .arrows button img {
    width: 19px;
  }
}
@media (max-width: 600px) {
  section.home_anteriores .content .title > img {
    width: 31px;
  }
  section.home_anteriores .content .title h2 {
    font-size: 24px;
    line-height: 34px;
  }
  section.home_anteriores .content .title span, section.home_anteriores .content .title .arrows {
    display: none;
  }
}
section.home_anteriores .content .title > img {
  width: 40px;
  margin: 0 16px 0 0;
}
section.home_anteriores .content .title h2 {
  color: black;
}
section.home_anteriores .content .title span {
  width: calc(100% - 445px);
}
section.home_anteriores .content .carousel_content {
  margin: 0 0 100px;
}
section.home_anteriores .content .carousel_content .slick-list {
  overflow: visible;
}
section.home_anteriores .content .carousel_content .item {
  width: 450px !important;
  margin: 0 20px 0 0;
}
section.home_anteriores .content .carousel_content .item .img {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 15px;
}
section.home_anteriores .content .carousel_content .item .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section.home_anteriores .content .carousel_content .item .img .data {
  position: relative;
  background: linear-gradient(90deg, #042374 0%, rgba(0, 0, 0, 0) 80.54%);
  padding: 0 0 0 42px;
  width: 300px;
  height: 50px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  border-radius: 8px;
  text-transform: uppercase;
}
section.home_anteriores .content .carousel_content .item .img .data .square {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #022394;
}
section.home_anteriores .content .carousel_content .item .img .data .square::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #1860ff;
}
section.home_anteriores .content .carousel_content .item .img .data .square::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}
section.home_anteriores .content .carousel_content .item .img .data span {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  color: #050545;
  background: #fff;
  padding: 3px 10px;
  border-radius: 10px;
  margin: 0 0 0 10px;
}
@media (max-width: 1250px) {
  section.home_anteriores .content .carousel_content .item .img .data {
    font-size: 13px;
  }
  section.home_anteriores .content .carousel_content .item .img .data span {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  section.home_anteriores .content .carousel_content .item .img .data {
    height: 37px;
    padding: 0 0 0 25px;
    background: linear-gradient(90deg, #042374 0%, rgba(0, 0, 0, 0) 80.54%);
  }
  section.home_anteriores .content .carousel_content .item .img .data .square {
    left: 6px;
    width: 14px;
    height: 14px;
  }
  section.home_anteriores .content .carousel_content .item .img .data .square::before {
    width: 8px;
    height: 8px;
  }
  section.home_anteriores .content .carousel_content .item .img .data .square::after {
    width: 3px;
    height: 3px;
  }
  section.home_anteriores .content .carousel_content .item .img .data span {
    padding: 1px 6px;
    border-radius: 3px;
  }
}
section.home_anteriores .content .carousel_content .item .img .data {
  position: absolute;
  left: 15px;
  bottom: 20px;
}
section.home_anteriores .content .carousel_content .item h3 {
  font-weight: 500;
  font-size: 25px;
  line-height: 29px;
  color: #0036F8;
  margin: 0 0 12px;
}
section.home_anteriores .content .carousel_content .item .desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #41505F;
  margin: 0 0 12px;
}
section.home_anteriores .content .carousel_content .item .desc * {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #41505F;
}
section.home_anteriores .content .carousel_content .item a {
  background: #0036F8;
  border-color: #0036F8;
  padding: 9px 16px;
  border: 2px solid #fff;
  border-radius: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  display: flex;
  width: fit-content;
  align-items: center;
}
section.home_anteriores .content .carousel_content .item a::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(./../img/seta.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0 0 12px;
}
@media (max-width: 1000px) {
  section.home_anteriores .content .carousel_content .item a {
    font-size: 16px;
    line-height: 24px;
    border-radius: 9px;
  }
  section.home_anteriores .content .carousel_content .item a::after {
    width: 16px;
    height: 16px;
    margin: 0 0 0 7px;
  }
}
@media (max-width: 1000px) {
  section.home_anteriores .content .title {
    margin: 0 0 40px;
  }
  section.home_anteriores .content .title span {
    width: calc(100% - 384px);
  }
  section.home_anteriores .content .carousel_content .item {
    width: 350px !important;
  }
  section.home_anteriores .content .carousel_content .item .img {
    height: 230px;
  }
  section.home_anteriores .content .carousel_content .item .img .data {
    left: 10px;
    bottom: 14px;
  }
  section.home_anteriores .content .carousel_content .item h3 {
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 9px;
  }
  section.home_anteriores .content .carousel_content .item .desc, section.home_anteriores .content .carousel_content .item .desc * {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (max-width: 600px) {
  section.home_anteriores {
    border-radius: 0;
  }
  section.home_anteriores .content {
    padding-top: 30px;
    padding-bottom: 100px;
  }
  section.home_anteriores .content .title {
    margin: 0 0 20px;
  }
  section.home_anteriores .content .title > img {
    display: none;
  }
  section.home_anteriores .content .carousel_content {
    margin: 0 0 70px;
  }
  section.home_anteriores .content .carousel_content .item {
    width: 290px !important;
  }
  section.home_anteriores .content .carousel_content .item .img {
    height: 200px;
  }
}
section.feira_header {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: 800px;
  border-radius: 24px;
  overflow: hidden;
  background: #000b27;
}
section.feira_header .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.feira_header .bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.83;
}
section.feira_header .bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section.feira_header .content {
  position: relative;
  padding-top: 90px;
}
section.feira_header .content .data {
  position: relative;
  background: linear-gradient(90deg, #042374 0%, rgba(0, 0, 0, 0) 80.54%);
  padding: 0 0 0 42px;
  width: 300px;
  height: 50px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  border-radius: 8px;
  text-transform: uppercase;
}
section.feira_header .content .data .square {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #022394;
}
section.feira_header .content .data .square::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #1860ff;
}
section.feira_header .content .data .square::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}
section.feira_header .content .data span {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  color: #050545;
  background: #fff;
  padding: 3px 10px;
  border-radius: 10px;
  margin: 0 0 0 10px;
}
@media (max-width: 1250px) {
  section.feira_header .content .data {
    font-size: 13px;
  }
  section.feira_header .content .data span {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  section.feira_header .content .data {
    height: 37px;
    padding: 0 0 0 25px;
    background: linear-gradient(90deg, #042374 0%, rgba(0, 0, 0, 0) 80.54%);
  }
  section.feira_header .content .data .square {
    left: 6px;
    width: 14px;
    height: 14px;
  }
  section.feira_header .content .data .square::before {
    width: 8px;
    height: 8px;
  }
  section.feira_header .content .data .square::after {
    width: 3px;
    height: 3px;
  }
  section.feira_header .content .data span {
    padding: 1px 6px;
    border-radius: 3px;
  }
}
section.feira_header .content .data {
  background: linear-gradient(90deg, #042374 0%, #0036F8 80.54%);
  text-transform: uppercase;
  width: 200px;
  margin: 0 auto 45px;
}
section.feira_header .content h1 {
  font-weight: 300;
  font-size: 45px;
  line-height: 55px;
  color: #fff;
  text-align: center;
  margin: 0 0 27px;
}
section.feira_header .content p {
  font-weight: 400;
  font-size: 26px;
  line-height: 33px;
  text-align: center;
  color: #fff;
  margin: 0 0 60px;
}
section.feira_header .content .dados {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
section.feira_header .content .dados .item {
  display: flex;
  flex-direction: column-reverse;
}
section.feira_header .content .dados .item h2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #E1E1E1;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}
section.feira_header .content .dados .item p {
  font-weight: 700;
  font-size: 65px;
  line-height: 75px;
  text-align: center;
  color: #6FDBD4;
  margin: 0 0 20px;
}
@media (max-width: 1000px) {
  section.feira_header {
    height: auto;
    border-radius: 24px 24px 0 0;
  }
  section.feira_header .content {
    padding-top: 40px;
    padding-bottom: 100px;
  }
  section.feira_header .content h1 {
    font-size: 35px;
    line-height: 40px;
  }
  section.feira_header .content p {
    font-size: 20px;
    line-height: 30px;
  }
  section.feira_header .content .dados .item h2 {
    font-size: 15px;
    line-height: 20px;
  }
  section.feira_header .content .dados .item p {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (max-width: 600px) {
  section.feira_header .content {
    padding-bottom: 60px;
  }
  section.feira_header .content .data {
    margin: 0 auto 30px;
    width: 170px;
  }
  section.feira_header .content h1 {
    font-size: 25px;
    line-height: 30px;
    margin: 0 0 16px;
  }
  section.feira_header .content p {
    font-size: 14px;
    line-height: 23px;
    margin: 0 0 20px;
  }
  section.feira_header .content .dados {
    flex-direction: column;
    gap: 20px;
  }
  section.feira_header .content .dados .item h2 {
    font-size: 13px;
    line-height: 18px;
  }
  section.feira_header .content .dados .item p {
    font-size: 35px;
    line-height: 45px;
    margin: 0 0 5px;
  }
}
section.feira_video .video {
  margin-top: -200px;
}
section.feira_video .content .text {
  padding: 50px 0 40px;
}
section.feira_video .content .text * {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  margin: 0 0 20px;
}
@media (max-width: 1000px) {
  section.feira_video .video {
    margin-top: 0;
  }
  section.feira_video .content .text * {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 15px;
  }
}
@media (max-width: 600px) {
  section.feira_video .content .text {
    padding: 30px 0 30px;
  }
  section.feira_video .content .text * {
    font-size: 13px;
    line-height: 23px;
    margin: 0 0 10px;
  }
}
section.feira_galeria .content {
  padding-bottom: 80px;
}
section.feira_galeria .content .title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 30px;
}
section.feira_galeria .content .title > img {
  width: 50px;
  height: auto;
}
section.feira_galeria .content .title h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 45px;
  color: #000b27;
  margin: 0;
}
section.feira_galeria .content .title span {
  margin: 0 12px;
  height: 1px;
  background: rgba(170, 177, 191, 0.45);
}
section.feira_galeria .content .title .arrows {
  width: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.feira_galeria .content .title .arrows button {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #AAB1BF;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.feira_galeria .content .title .arrows button.next {
  transform: rotate(180deg);
}
@media (max-width: 1000px) {
  section.feira_galeria .content .title h2 {
    font-size: 30px;
    line-height: 40px;
  }
  section.feira_galeria .content .title .arrows {
    width: 95px;
  }
  section.feira_galeria .content .title .arrows button {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
  section.feira_galeria .content .title .arrows button img {
    width: 19px;
  }
}
@media (max-width: 600px) {
  section.feira_galeria .content .title > img {
    width: 31px;
  }
  section.feira_galeria .content .title h2 {
    font-size: 24px;
    line-height: 34px;
  }
  section.feira_galeria .content .title span, section.feira_galeria .content .title .arrows {
    display: none;
  }
}
section.feira_galeria .content .title > img {
  margin: 0 20px 0 0;
}
section.feira_galeria .content .title h2 {
  color: #fff;
}
section.feira_galeria .content .galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 0 50px;
}
section.feira_galeria .content .galeria a.item {
  width: calc((100% - 30px) / 3);
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 601px) {
  section.feira_galeria .content .galeria a.item:nth-child(5n-3), section.feira_galeria .content .galeria a.item:nth-child(5n-4) {
    width: calc((100% - 15px) / 2);
  }
}
section.feira_galeria .content .galeria a.item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section.feira_galeria .content button {
  background: transparent;
  margin: 0 auto;
  padding: 9px 16px;
  border: 2px solid #fff;
  border-radius: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  display: flex;
  width: fit-content;
  align-items: center;
}
section.feira_galeria .content button::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(./../img/seta.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0 0 12px;
}
@media (max-width: 1000px) {
  section.feira_galeria .content button {
    font-size: 16px;
    line-height: 24px;
    border-radius: 9px;
  }
  section.feira_galeria .content button::after {
    width: 16px;
    height: 16px;
    margin: 0 0 0 7px;
  }
}
@media (max-width: 1000px) {
  section.feira_galeria .content .galeria a.item {
    height: 250px;
  }
}
@media (max-width: 600px) {
  section.feira_galeria .content .galeria {
    gap: 10px;
  }
  section.feira_galeria .content .galeria a.item {
    width: calc((100% - 10px) / 2);
    height: 50vw;
    border-radius: 10px;
  }
  section.feira_galeria .content .galeria a.item:nth-child(3n-2) {
    width: 100%;
  }
}
section.info_header .content {
  background: #0C4291;
  margin-top: 75px;
  padding-top: 60px;
  padding-bottom: 55px;
  border-radius: 24px 24px 0 0;
}
section.info_header .content h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 45px;
  color: #fff;
  margin: 0 0 25px;
}
section.info_header .content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  margin: 0;
}
@media (max-width: 1000px) {
  section.info_header .content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  section.info_header .content h1 {
    font-size: 30px;
    line-height: 35px;
    margin: 0 0 20px;
  }
}
@media (max-width: 600px) {
  section.info_header .content {
    padding-top: 40px;
    padding-bottom: 50px;
    border-radius: 14px 14px 0 0;
  }
  section.info_header .content h1 {
    font-size: 23px;
    line-height: 30px;
    margin: 0 0 15px;
  }
  section.info_header .content p {
    font-size: 12px;
    line-height: 18px;
  }
}
section.info_content {
  background: #F7F7F7;
  border-radius: 0 0 64px 64px;
  padding-bottom: 100px;
}
section.info_content .content {
  background: #fff;
  border-radius: 0 0 24px 24px;
  padding-top: 50px;
  padding-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.info_content .content .left {
  width: 320px;
}
section.info_content .content .left .pages {
  border-top: 1px solid #EEEEEE;
  display: flex;
  flex-direction: column;
}
section.info_content .content .left .pages a {
  border-bottom: 1px solid #EEEEEE;
  color: #000000;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10px 12px 20px;
}
section.info_content .content .left .pages a.active {
  background: #EEEEEE;
  font-weight: bold;
}
section.info_content .content .left .pages a.active::after {
  content: "-";
  color: #000;
}
section.info_content .content .left .pages a::after {
  content: "+";
  color: #0036F8;
  font-size: 18px;
  font-weight: 400;
}
section.info_content .content .right {
  color: #000;
  width: calc(100% - 400px);
}
section.info_content .content .right * {
  margin-top: 0;
}
@media (max-width: 1000px) {
  section.info_content {
    background: #fff;
  }
  section.info_content .content .right {
    width: 100%;
    padding: 50px 0 0;
  }
}
@media (max-width: 600px) {
  section.info_content {
    border-radius: 0;
    padding-bottom: 50px;
  }
  section.info_content .content {
    padding-top: 40px;
  }
  section.info_content .content .left {
    width: 100%;
  }
  section.info_content .content .left .pages a {
    font-size: 16px;
    line-height: 23px;
  }
  section.info_content .content .right h2 {
    font-size: 22px;
  }
  section.info_content .content .right h3 {
    font-size: 20px;
  }
  section.info_content .content .right h4 {
    font-size: 18px;
  }
  section.info_content .content .right p {
    font-size: 12px;
  }
}

.expo_empresas .title {
  margin: 0 0 57px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.expo_empresas .title > img {
  width: 50px;
  height: auto;
}
.expo_empresas .title h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 45px;
  color: #000b27;
  margin: 0;
}
.expo_empresas .title span {
  margin: 0 12px;
  height: 1px;
  background: rgba(170, 177, 191, 0.45);
}
.expo_empresas .title .arrows {
  width: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.expo_empresas .title .arrows button {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #AAB1BF;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.expo_empresas .title .arrows button.next {
  transform: rotate(180deg);
}
@media (max-width: 1000px) {
  .expo_empresas .title h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .expo_empresas .title .arrows {
    width: 95px;
  }
  .expo_empresas .title .arrows button {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
  .expo_empresas .title .arrows button img {
    width: 19px;
  }
}
@media (max-width: 600px) {
  .expo_empresas .title > img {
    width: 31px;
  }
  .expo_empresas .title h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .expo_empresas .title span, .expo_empresas .title .arrows {
    display: none;
  }
}
.expo_empresas .title > img {
  width: 40px;
}
.expo_empresas .title h2 {
  margin: 0 0 0 16px;
  color: #000;
}
.expo_empresas .caroussel_content .slick-list {
  overflow: visible;
}
.expo_empresas .caroussel_content .item {
  margin: 0 52px 0 0;
  width: 200px !important;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.expo_empresas .caroussel_content .item img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .expo_empresas .title {
    margin: 0 0 30px;
  }
  .expo_empresas .title > img {
    width: 31px;
  }
  .expo_empresas .title h2 {
    margin: 0 0 0 6px;
    font-size: 21px;
    line-height: 31px;
  }
  .expo_empresas .caroussel_content .item {
    margin: 0 30px 0 0;
    width: 120px !important;
    height: 46px;
  }
}

.video {
  overflow: hidden;
}
.video[data-active=true] .content .image.left {
  right: calc(100% - 150px);
}
.video[data-active=true] .content .image.right {
  left: calc(100% - 150px);
}
.video[data-active=true] .content button {
  opacity: 0;
  pointer-events: none;
}
.video .content {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto;
  padding: 0;
}
.video .content .image {
  position: absolute;
  width: 601px;
  height: 100%;
  top: 0;
  background-size: 1200px;
  transition: all 1s;
  filter: brightness(0.3);
}
.video .content .image.left {
  background-position: left;
  right: calc(50% - 1px);
  border-radius: 32px 0 0 32px;
}
.video .content .image.right {
  background-position: right;
  left: calc(50% - 1px);
  border-radius: 0 32px 32px 0;
}
.video .content #video_content {
  display: block;
  height: calc(100% - 2px) !important;
  width: calc(100% - 300px) !important;
  margin: 1px auto 0;
}
@media (max-width: 1000px) {
  .video[data-active=true] .content .image.left {
    right: calc(100% - 50px);
  }
  .video[data-active=true] .content .image.right {
    left: calc(100% - 50px);
  }
  .video .content {
    height: 400px;
  }
  .video .content .image {
    width: 501px;
    background-size: 1000px;
    border-radius: 0 !important;
  }
  .video .content #video_content {
    width: calc(100% - 100px) !important;
  }
}
@media (max-width: 600px) {
  .video[data-active=true] .content .image.left {
    right: calc(100% - 25px);
  }
  .video[data-active=true] .content .image.right {
    left: calc(100% - 25px);
  }
  .video .content {
    height: 200px;
  }
  .video .content .image {
    background-size: 600px;
    width: 301px;
  }
  .video .content #video_content {
    width: calc(100% - 50px) !important;
  }
}

button#playButton {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 1s;
  width: 121px;
  height: 121px;
  border-radius: 21px;
  background: #2173FF;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
button#playButton:before, button#playButton:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  animation-name: play_circle;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  border-radius: 21px;
  pointer-events: none;
}
button#playButton:after {
  animation-delay: 1.5s;
}
@keyframes play_circle {
  0% {
    border: 0px solid rgb(33, 115, 255);
  }
  100% {
    border: 50px solid rgba(33, 115, 255, 0);
  }
}
button#playButton img {
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1000px) {
  button#playButton {
    width: 100px;
    height: 100px;
  }
  button#playButton img {
    width: 40px;
  }
}
@media (max-width: 600px) {
  button#playButton {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  button#playButton:before, button#playButton:after {
    display: none;
  }
  button#playButton img {
    width: 15px;
  }
}

@keyframes horizontal_animate {
  0% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(-20px);
  }
}
@keyframes vertical_animate {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(-20px);
  }
}
* {
  font-family: "Sora", sans-serif;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  background: #000b27 !important;
  color: #fff;
  overflow-x: hidden;
}

button {
  cursor: pointer;
}

section.content_404 {
  padding: 100px 0 70px;
}
section.content_404 svg {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 5px;
}
section.content_404 svg * {
  fill: #fff;
}
section.content_404 p {
  font-size: 25px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  margin: 0;
}
@media (max-width: 600px) {
  section.content_404 {
    padding: 50px 0;
  }
  section.content_404 svg {
    width: 120px;
  }
  section.content_404 p {
    font-size: 20px;
  }
}

section.cadastro-realizado {
  padding: 38px 25px 0;
}
section.cadastro-realizado .logo {
  width: 200px;
  height: 150px;
  border: 1px solid #C4C4C4;
  margin: 0 auto 32px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
section.cadastro-realizado > svg {
  margin: 0 auto 25px;
  display: block;
}
section.cadastro-realizado h1 {
  font-family: opensans;
  font-weight: 300;
  font-size: 34px;
  line-height: 36px;
  max-width: 453px;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 30px;
}
section.cadastro-realizado p {
  font-family: opensans;
  font-weight: 300;
  font-size: 20px;
  line-height: 26px;
  color: #000000;
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}
section.cadastro-realizado a.voltar {
  display: block;
  width: 220px;
  height: 50px;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: 1px solid #373737;
  font-family: opensans;
  font-weight: bold;
  font-size: 18px;
  color: #6A6A6A;
  text-transform: uppercase;
  margin: 0 auto;
}
@media (max-width: 550px) {
  section.cadastro-realizado h1 {
    font-size: 26px;
    line-height: 34px;
  }
  section.cadastro-realizado p {
    font-size: 18px;
    line-height: 25px;
  }
}

/*# sourceMappingURL=principal.css.map */
