@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  width: 100vw;
  --color: ;
}

.navbar {
  position: fixed;
  display: flex;
  justify-content: center;
  z-index: 3;
  width: 100vw;
}

.navbar__container {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100vw;
  max-width: 1368px;
  height: auto;
  background-color: #ddd9d4;
  z-index: 1;
}

.navbar__background {
  position: fixed;
  width: 100vw;
  height: 67px;
  background-color: #ddd9d4;
  z-index: 2;
}

.navbar__image {
  position: relative;
  cursor: pointer;
  width: 150px;
  z-index: 3;
}

.navbar__links {
  display: flex;
  justify-content: space-evenly;
  width: 400px;
  align-items: center;
  z-index: 3;
}

.navbar__links-link {
  padding: 10px;
  cursor: pointer;
}

.navbar__links-link:hover {
  text-decoration: underline;
}

.navbar__cta {
  background-color: #ff941e;
  border-radius: 25px;
  padding: 10px 15px;
  color: white;
  font-weight: bold;
  z-index: 3;
  text-align: center;
}

.navbar__cta:hover {
  background-color: #ff8400;
  cursor: pointer;
}

.navbar__button {
  display: none;
  cursor: pointer;
  padding-top: 5px;
  z-index: 3;
}

.bar {
  display: block;
  width: 30px;
  height: 5px;
  margin: 5px auto;
  background-color: white;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 850px) {
  .navbar__image {
    padding-right: 40vw;
  }
  .navbar__button {
    display: block;
  }
  .navbar__links {
    position: absolute;
    top: -210px;
    transition: all 0.7s ease;
    flex-direction: column;
    background-color: #ddd9d4;
    width: 100vw;
    z-index: 1;
  }

  .navbar__links.active {
    top: 67px;
  }

  .navbar__links-link {
    padding-bottom: 15px;
  }

  .navbar__cta {
    position: absolute;
    top: -40px;
    width: 100vw;
    height: 20px;
    transition: all 0.7s ease;
    border-radius: 0px;
    padding: 10px 15px;
    z-index: 1;
  }
  .navbar__cta.active {
    top: 230px;
  }
  .navbar__button.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .navbar__button.active .bar:nth-child(2) {
    opacity: 0;
  }
  .navbar__button.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

h1 {
  font-size: 3rem;
  font-weight: bold;
  font-family: "Bebas Neue", sans-serif;
}

.homepage {
  width: 100vw;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.container__container {
  width: 100vw;
  background-color: #ddd9d4;
  display: flex;
  justify-content: center;
}

.hero__container {
  width: 1368px;
  background-color: #ddd9d4;
  display: flex;
  align-items: center;
  position: relative;
}

.hero {
  height: 499px;
  width: 100%;
  background-color: #ddd9d4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__text {
  width: 45vw;
  padding-left: 100px;
  padding-top: 90px;
  position: relative;
  z-index: 3;
}

.hero__text-content h1 {
  font-size: 3rem;
  line-height: 45px;
  padding-bottom: 20px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
}

.hero__text-content p {
  padding-bottom: 20px;
  width: 520px;
  line-height: 20px;
  text-align: justify;
}

.hero__text-cta {
  background-color: #ff941e;
  border-radius: 25px;
  padding: 10px 15px;
  width: 190px;
  text-align: center;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.hero__text-cta:hover {
  background-color: #e87800;
}

.hero__text-cta-button {
  cursor: pointer;
}

.hero__image-container {
  position: absolute;
  height: 900px;
  width: 600px;
  top: 0px;
  right: 0px;
}

.hero__image {
  width: 600px;
  height: 900px;
  overflow: hidden;
  position: absolute;
  top: 0px;
  right: 0px;
}

.hero__image-slider {
  display: flex;
  width: 4800px;
  height: 900px;
  position: absolute;
  top: -20px;
  right: -4200px;
}

.hero__image-ray {
  width: 600px;
  height: 900px;
  position: absolute;
  top: -250px;
  right: 0px;
}

.hero__image-ray img {
  width: 600px;
}

#slider__image {
  width: 600px;
  height: 850px;
}

@media (max-width: 1200px) {
  .hero {
    height: 949px;
    width: 100%;
    background-color: #ddd9d4;
    display: flex;
    align-items: start;
    justify-content: center;
  }
  .hero__text {
    width: 90%;
    padding-left: 0px;
    padding-top: 100px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 3;
    background-color: #ddd9d4;
  }
  .hero__text-content h1 {
    text-align: center;
  }
  .hero__text-cta {
    margin-bottom: 20px;
  }
  .hero__image-container {
    position: absolute;
    top: 450px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 680px) {
  .hero {
    height: 767px;
  }
  .hero__text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__text-content h1 {
    font-size: 2.2rem;
    line-height: 35px;
    padding-bottom: 20px;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 2px;
  }
  .hero__text-content p {
    padding-bottom: 20px;
    width: 90%;
    font-size: 0.8rem;
    line-height: 20px;
    text-align: justify;
  }
  .hero__image-container {
    position: absolute;
    height: 525px;
    width: 350px;
    top: 580px;
    right: 0px;
  }

  .hero__image {
    height: 525px;
    width: 350px;
    overflow: hidden;
    position: absolute;
    top: -170px;
    right: 0px;
  }

  .hero__image-slider {
    display: flex;
    width: 2800px;
    height: 525px;
    position: absolute;
    top: -20px;
    right: -2450px;
  }

  .hero__image-ray {
    height: 525px;
    width: 350px;
    position: absolute;
    top: -250px;
    right: 0px;
  }

  .hero__image-ray img {
    width: 350px;
  }

  #slider__image {
    height: 525px;
    width: 350px;
  }
}

.solution-container {
  width: 100vw;
  background-color: #002231;
  display: flex;
  justify-content: center;
}

.solution {
  height: auto;
  width: 1368px;
  background-color: #002231;
  padding-bottom: 40px;
}

.solution h1 {
  color: #ddd9d4;
  padding-top: 40px;
  padding-left: 400px;
  padding-bottom: 20px;
  letter-spacing: 1px;
  font-size: 2.5rem;
  position: relative;
  z-index: 0;
}

.solution__board {
  width: 90%;
  height: 390px;
  border: solid 9px #ffb469;
  position: relative;
  z-index: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  justify-items: center;
  border-radius: 60px;
  box-shadow: 0px 0px 20px 10px #ff941e;
  background-color: #002231;
  line-height: 20px;
}

.card-container {
  width: 170px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  border: solid 2px #ffb469;
  box-shadow: 0px 0px 4px 4px #ff941e;
  background-color: #002231;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  color: #ddd9d4;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: transform 1s, opacity 0.5s;
  transform-style: preserve-3d;
  margin: 20px 0px;
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.card-container.flipped .card {
  transform: rotateY(180deg);
}

.card-back {
  transform: rotateY(180deg);
}

.card button {
  padding: 5px;
  background-color: #ff8400;
  border-radius: 10px;
  color: #042734;
  cursor: pointer;
}

.card img {
  width: 80px;
  height: 80px;
}

.card li {
  list-style: none;
  font-size: 0.8rem;
  width: 140px;
  border: solid 2px white;
  border-radius: 20px;
  line-height: 16px;
  padding: 5px;
}

.card ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  height: 320px;
  font-weight: normal;
}

#exit {
  width: 20px;
  height: 20px;
  padding-bottom: 10px;
}

#cta__solution {
  margin: 0 auto;
  margin-top: 40px;
}

@media (max-width: 1200px) {
  .solution__board {
    grid-template-columns: repeat(3, 1fr);
    width: 600px;
    height: 790px;
  }
  .solution h1 {
    padding-left: 0px;
    text-align: center;
    text-shadow: -3px -3px 3px #042734, 3px -3px 3px #042734,
      -3px 3px 3px #042734, 3px 3px 3px #042734;
  }
}

@media (max-width: 768px) {
  .solution__board {
    grid-template-columns: repeat(2, 1fr);
    width: 420px;
    height: 1190px;
  }
  .solution h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 680px) {
  .solution__board {
    box-shadow: 0px 0px 10px 5px #ff941e;
  }
}

@media (max-width: 480px) {
  .solution__board {
    width: 85vw;
    height: 1070px;
  }
  .card-container {
    width: 150px;
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .card {
    margin-top: 30px;
  }
  .card li {
    width: 120px;
    line-height: 12px;
  }
}

.blog {
  width: 100vw;
  background-color: #ddd9d4;
  display: flex;
  justify-content: center;
}

.blog-container {
  width: 1368px;
  height: 750px;
  background-color: #ddd9d4;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.blog__titulo h1 {
  font-size: 2.5rem;
  padding-top: 45px;
}

.blog__container {
  display: flex;
  padding-top: 40px;
  margin: 0 auto;
  justify-content: space-evenly;
  width: 1368px;
}

.blog__destaque {
  width: 480px;
  height: 620px;
}

.blog__destaque img {
  width: 480px;
  height: 280px;
  border-radius: 35px;
  margin-bottom: 30px;
  object-fit: cover;
  object-position: center;
}

.blog__destaque a {
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  line-height: 33px;
  font-weight: 500;
}

.blog__destaque a:hover {
  color: #ff8400;
}

.blog__destaque p {
  padding-top: 20px;
  padding-right: 20px;
  line-height: 20px;
  text-align: justify;
}

.blog__novidades {
  width: 100vw;
  height: 400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.blog__novidades-new {
  display: flex;
  padding: 10px;
  width: 500px;
  height: 210px;
  border-radius: 20px;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.5);
  margin: 12px 7px;
}

.vejatodos {
  border-radius: 20px;
  margin-top: 140px;
  padding: 12px;
  font-size: 1.3rem;
  background-color: #ff941e;
  color: white;
}

.vejatodos:hover {
  background-color: #ff8400;
}

#last {
  border-bottom: none;
}

#gray {
  color: gray;
}

.blog__novidades-new img {
  width: 150px;
  height: 150px;
  border-radius: 35px;
  object-fit: cover;
  object-position: center;
}

.blog__novidades-new a {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  line-height: 25px;
  font-weight: 500;
}

.blog__novidades-new a:hover {
  color: #ff8400;
}

.blog__texto {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.blog__texto p {
  line-height: 20px;
  font-size: 0.9rem;
}

@media (max-width: 1368px) {
  .blog__container {
    width: 100vw;
  }
  .blog-container {
    width: 100vw;
  }
  .blog__destaque {
    width: 35vw;
  }
  .blog__destaque img {
    width: 35vw;
  }
  .blog__novidades {
    width: 100vw;
  }
}

@media (max-width: 1200px) {
  .blog__container {
    flex-direction: column;
    align-items: center;
  }
  .blog-container {
    height: 1250px;
  }
  .blog__destaque {
    width: 600px;
  }
  .blog__destaque img {
    width: 600px;
  }
  .blog__novidades {
    width: 600px;
  }
  .vejatodos {
    margin-top: 650px;
  }
}

@media (max-width: 700px) {
  .blog__destaque {
    width: 80vw;
    border-bottom: solid 2px black;
  }
  .blog__destaque img {
    width: 80vw;
  }
  .blog-container {
    height: 1400px;
  }
  .vejatodos {
    margin-top: 780px;
  }
  .blog__novidades {
    width: 80vw;
  }
  .blog__novidades-new {
    flex-direction: column;
    height: auto;
    padding-bottom: 0px;
  }
  .blog__novidades-new img {
    margin: 0 auto;
  }
  .blog__destaque {
    height: auto;
  }
  .blog__texto a {
    padding: 10px 0px;
    font-size: 1.2rem;
  }
  #gray {
    padding: 20px 0px;
  }
  .blog__destaque p {
    text-align: start;
    font-size: 0.8rem;
  }
  .blog__texto p {
    text-align: start;
    font-size: 0.8rem;
  }
  .blog__titulo h1 {
    font-size: 2.2rem;
  }
  .blog__destaque a {
    font-size: 1.2rem;
  }
}

@media (max-width: 500px) {
  .blog-container {
    height: 1600px;
  }
  .vejatodos {
    margin-top: 1000px;
  }
}

.historia {
  width: 100vw;
  height: 700px;
  display: flex;
  background-color: #002231;
  justify-content: center;
  padding-top: 50px;
  color: #ddd9d4;
}

.historia-container {
  height: auto;
  display: flex;
  background-color: #002231;
  justify-content: center;
  padding-top: 50px;
  color: #ddd9d4;
}

.historia__texto {
  width: 485px;
  padding-right: 100px;
}

.historia__texto h1 {
  font-size: 2.5rem;
  padding-top: 40px;
}

.historia__texto p {
  padding-top: 20px;
  text-align: justify;
  line-height: 20px;
}

.pessoas {
  display: flex;
  flex-direction: column;
  font-weight: bold;
}

.pessoas img {
  width: 70px;
  height: 70px;
  border-radius: 50px;
}

.pessoa {
  display: flex;
  margin-top: 15px;
}

.iden {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-left: 15px;
}

.iden p {
  padding-top: 0px;
}

.video {
  border: solid 3px #ffb469;
  box-shadow: 0px 0px 20px 10px #ff941e;
  width: 315px;
  height: 560px;
}

@media (max-width: 1040px) {
  .historia-container {
    width: 100vw;
    height: auto;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
  }
  .historia {
    height: auto;
    padding-top: 0px;
  }
  .pessoa {
    justify-content: center;
  }
  .pessoas {
    padding-top: 15px;
  }
  .iden {
    width: 200px;
  }
  .iden p {
    padding-top: 0px;
  }
  .historia__texto {
    padding-right: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .historia__texto h1 {
    font-size: 2.2rem;
    text-align: center;
  }
  .video {
    margin: 60px 0px;
  }
}

@media (max-width: 570px) {
  .historia-container {
    width: 100vw;
    height: auto;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
  }
  .historia {
    height: auto;
    padding-top: 0px;
  }
  .pessoa {
    justify-content: center;
  }
  .pessoas {
    padding-top: 15px;
  }
  .iden {
    width: 200px;
  }
  .iden p {
    padding-top: 0px;
  }
  .historia__texto {
    width: 80vw;
  }
  .historia__texto h1 {
    font-size: 2.2rem;
    text-align: center;
  }
  .historia__texto p {
    font-size: 0.8rem;
  }
  .video {
    margin: 60px 0px;
  }
}

.parceiros {
  width: 100vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #ddd9d4;
}

.parceiros h2 {
  font-size: 2.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: bold;
  padding: 60px 0px 30px 0px;
}

#p {
  width: 600px;
  text-align: justify;
}

.parceiros-container {
  width: 1368px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-container {
  width: 100%;
  height: 120px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 20% 80%, transparent);
}

.slider {
  width: 100%;
  height: auto;
  display: flex;
}

@keyframes autoRun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.slider-track {
  display: flex;
  width: 2080px;
  height: 120px;
  position: relative;
  animation: 25s autoRun infinite linear;
  animation-play-state: running;
}

.slide {
  width: 230px;
  display: flex;
  border-radius: 30px;
  padding: 0px 5px;
}

.slide img {
  width: 100%;
}

.parceiros-parceiros {
  display: flex;
  width: 1000px;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 50px;
}

.parceiro p {
  font-size: 1.3rem;
  font-weight: bold;
}

.parceiro {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.parceiro img {
  border-radius: 35px;
  padding-bottom: 20px;
}

@media (max-width: 1368px) {
  .parceiros-container {
    width: 100vw;
  }
  .parceiros-parceiros {
    width: 100vw;
    justify-content: space-around;
  }
}
@media (max-width: 990px) {
  .parceiro img {
    width: 150px;
  }
}
@media (max-width: 700px) {
  .parceiros h2 {
    font-size: 2.2rem;
  }
  #p {
    width: 80vw;
    text-align: start;
  }
  .parceiros-parceiros {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .parceiro {
    padding-top: 15px;
  }
}

.rodape {
  width: 100vw;
  height: auto;
  background-color: #002231;
  display: flex;
  justify-content: center;
  color: #ddd9d4;
}

.rodape-container {
  width: 1368px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rodape-container h2 {
  font-size: 1.5rem;
  text-align: center;
  line-height: 35px;
  padding-top: 50px;
  font-weight: bold;
}

.rodape-container h3 {
  font-size: 1.2rem;
  font-weight: bold;
  padding-bottom: 20px;
}

.rodape-container img {
  width: 70px;
  padding: 15px;
}

.rodape-content {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  padding: 80px 0px;
}

.rodape-content p {
  padding-bottom: 15px;
}

.rodape__logo img {
  padding: 0px;
  width: 200px;
}

.rodape__redes img {
  width: 40px;
  padding: 0px;
  padding-right: 10px;
}

.mapbox {
  width: 400px;
  height: 400px;
}

.mapbox iframe {
  width: 400px;
  height: 400px;
}

@media (max-width: 1200px) {
  .rodape-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 700px;
    padding: 0px;
  }
  .rodape-container h2 {
    width: 80vw;
  }
}

@media (max-width: 850px) {
  .rodape-container h2 {
    font-size: 0.9rem;
  }
  .rodape-container p {
    font-size: 0.8rem;
  }
  .rodape-container h3 {
    font-size: 0.9rem;
  }
}
