@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans&display=swap");

* {
  padding: 0px;
  margin: 0px;
  scroll-behavior: smooth;
}

:root {
  --cor1: #fff;
  --cor2: black;
  --cor3: #33a4aa;
  --cor4: #0fa3da;
  --fontFamily: "Work Sans", sans-serif;
  --fontOswald: "Oswald", sans-serif;
}

/* ------ */
header {
  background-color: rgb(100%, 100%, 100% / 0.7);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 10px 0;
  z-index: 3;

  position: fixed;

  animation: shadow 3s ease-in-out forwards;
  animation-timeline: view();
  animation-range: cover 140% cover 180%;
}

@keyframes shadow {
  100% {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.13);
  }
}

.top {
  cursor: pointer;
}

header img {
  width: 300px;
  height: 30px;
  object-fit: cover;
}

header > nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.big-menu a {
  text-decoration: none;
  color: var(--cor1);
  font-size: 18px;
  font-family: var(--fontOswald);
  font-weight: 200;
  letter-spacing: 1px;
  border: 2px solid transparent;
  padding: 20px;

  animation: colorChange 3s ease-in-out forwards;
  animation-timeline: view();
  animation-range: cover 140% cover 180%;
}

@keyframes colorChange {
  100% {
    color: black;
  }
}

.big-menu a:hover {
  color: black;
  border-bottom: 2px solid black;
}

#checkbox,
.toggle,
.bars,
.small-menu {
  display: none;
}

/* ------ */
.carrousel {
  height: 100vh;
  background-color: var(--cor4);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 80px;
  box-shadow: 0px 0px 10px #0fa4da;

  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* -- */
.absolute {
  position: absolute;
  top: 50px !important;
  inset: 0;
  display: inline-flex;
}

.justify-center {
  justify-content: center;
}

.bg-sharpe1 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  position: relative;
  animation: one 10s infinite;
}

.bg-sharpe2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  animation: two 10s infinite;
}

.bg-sharpe3 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  position: relative;
  animation: tres 13s infinite;
}

@keyframes one {
  0% {
    left: -200px;
    top: 70px;
  }
  25% {
    left: -300px;
    top: 250px;
  }
  50% {
    left: -250px;
    top: 450px;
  }
  75% {
    left: -50px;
    top: 250px;
  }
  100% {
    left: -200px;
    top: 70px;
  }
}

@keyframes two {
  0% {
    left: -50px;
    top: -50px;
  }
  25% {
    left: -100px;
    top: -150px;
  }
  50% {
    left: 200px;
    top: -100px;
  }
  75% {
    left: 150px;
    top: -50px;
  }
  100% {
    left: -50px;
    top: -50px;
  }
}

@keyframes tres {
  0% {
    right: -300px;
    top: 250px;
  }
  25% {
    right: -250px;
    top: 450px;
  }
  50% {
    right: -50px;
    top: 250px;
  }
  75% {
    right: -200px;
    top: 70px;
  }
  100% {
    right: -300px;
    top: 250px;
  }
}

.opacity-50 {
  opacity: 0.5;
}

.bg-blur {
  filter: blur(90px);
}

.bg-primary {
  background-color: rgb(255, 255, 255);
}

.bg-teal {
  background-color: rgb(255, 255, 255);
}

.bg-purple {
  background-color: rgb(255, 255, 255);
}
/* -- */

.carrousel > video {
  width: 90%;
  max-width: 1000px;
  height: 60%;
  max-height: 500px;
  object-fit: cover;
  z-index: 2;
}
/* ------ */
.vdbox{
  height: 400px;
}
/* --------- */
.carrousel > h2 {
  font-family: var(--fontFamily);
  font-weight: 200;
  color: var(--cor1);
  font-size: 40px;
  text-align: center;
}

.text-carr {
  width: 80%;
  max-width: 650px;
}

.text-carr h2 {
  font-family: var(--fontFamily);
  font-weight: 800;
  color: var(--cor1);
  font-size: 40px;
}

.text-carr h2:last-child {
  font-weight: 100;
  text-align: right;
}

/* ----------- */

.information {
  width: 90%;
  max-width: 1300px;
  padding: 60px 0 160px 0;
  margin: 0 auto;
}

.information > h2 {
  font-family: var(--fontFamily);
  font-weight: 200;
  color: var(--cor4);
  font-size: 45px;
  padding: 100px 0;
}

.information > h2 > strong {
  font-weight: 800;
  font-size: 80px;
}

/* -- */

.information .topic-group {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.topic {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 40px;
  width: 100%;

  animation: appear 1ms ease-in-out forwards;
  animation-timeline: view();
  animation-range: cover 0% cover 35%;
}

@keyframes appear {
  from {
    opacity: 0;
    translate: -100vw 0;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

.topic > i {
  color: var(--cor4);
  font-size: 50px;
  width: 10%;
}

.topic-text {
  border-left: 2px solid var(--cor4);
  padding: 20px 0 20px 20px;
  width: 90%;
}

.topic-text > h2 {
  padding-bottom: 30px;
  font-family: var(--fontFamily);
  font-weight: 500;
  color: var(--cor4);
}

.topic-text > p {
  font-family: var(--fontFamily);
  font-weight: 200;
  color: var(--cor2);
  letter-spacing: 0.5px;
}

.topic-text > p > a{
  color: var(--cor2);
}

/* ----------- */

/* .description-projects {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  color: #000;

  background-image: url(img/back01.png);
  background-attachment: fixed;
}

.description-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1200px;
}

.description-top h2 {
  font-weight: 300;
  margin: 40px 0;
}

.description-top p {
  font-weight: 300;
  font-size: var(--fontGrande);
}

.description-middle {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 40px;

  font-size: var(--fontGrande);
}

.description-middle i {
  font-size: 35px;
  margin-right: 10px;
}

.description-bottom {
  margin: 90px 0 50px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 95%;
  position: relative;
  max-width: 1000px;
}

.bottom-img {
  z-index: 2;
  position: absolute;
  right: 2%;
  width: 40%;
}

.bottom-img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.bottom-text {
  background-color: #e9e7e7;
  width: 100%;
  height: 400px;
  padding: 40px 30px;
}

.bottom-text h2 {
  color: var(--cor3);
  width: 50%;
}

.bottom-text p {
  padding: 5px 0;
  width: 55%;
  text-align: justify;
  font-weight: 300;
}

.bottom-text strong {
  color: var(--cor3);
}
 */
/* ------- */

.produtos {
  position: relative;
  background-color: var(--cor4);
  box-shadow: 5px 5px 20px 10px rgba(0, 0, 0, 0.185);
  width: 100%;
  padding: 60px 0 60px 0;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
}

.produtos > h3 {
  text-align: right;
  width: 80%;
  max-width: 1200px;
  font-weight: 300;
  font-family: var(--fontOswald);
  padding: 60px 0 0 0;
  color: var(--cor1);
}

.prod-title {
  padding: 20px 0 40px 0;
  width: 80%;
  max-width: 700px;
}

.prod-title > h2 {
  font-weight: 100;
  font-family: var(--fontFamily);
  color: var(--cor1);
  font-size: 40px;
}

.prod-title > h2:last-child {
  text-align: right;
  font-weight: 800;
}

.produtos > p {
  width: 80%;
  max-width: 700px;
  border-left: 2px solid var(--cor1);
  border-right: 2px solid var(--cor1);
  padding: 20px;
  font-family: var(--fontFamily);
}

.produtos-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;

  padding: 150px 0 0 0;
  max-width: 1200px;
  gap: 80px;
  width: 100%;
  height: 100%;
}

.produto {
  width: 95%;
}

.open-modal {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 40px;
  height: 300px;
  width: 90%;
  margin: 0 auto;
  /* background-color: #f1f1f1; */
}

.slider {
  position: relative;
  width: 40%;
  max-width: 400px;
  height: 100%;
  overflow: hidden;
}

.slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.363);
}

.slider img.active {
  opacity: 1;
  z-index: 2;
}

.open-modal > img {
  width: 40%;
  max-width: 400px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.363);
  border-radius: 5px;
}

.open-modal figcaption {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--cor1);
  font-family: var(--fontFamily);
}

.open-modal figcaption p {
  width: 90%;
  align-self: center;
}

.open-modal h4 {
  margin: 0 auto;
  width: 90%;
  font-size: 40px;
  font-weight: 200;
}

.open-modal h5 {
  border: 1px solid var(--cor1);
  width: fit-content;
  padding: 10px 20px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 15px;
}

.left {
  text-align: right;
}

.right {
  width: 100%;
  text-align: left;
}

p.right {
  border-left: 2px solid white;
  padding: 20px 0 20px 20px;
}

p.left {
  border-right: 2px solid white;
  padding: 20px 20px 20px 0;
}

.open-modal span {
  font-size: 18px;
  color: var(--cor5);
}

/* --- */

.modal-toggle {
  display: none;
}

.modal {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.678);
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 40px 10px;
  text-align: center;
  font-family: var(--fontFamily);
  background-color: var(--cor1);
}

.modal-content > h3 {
  margin-top: 30px;
  width: 90%;
  text-align: left;
  font-size: 35px;
  font-weight: 200;
  color: var(--cor4);
}

.modal-content > h4 {
  margin-bottom: 30px;
  width: 90%;
  text-align: left;
  font-size: 26px;
  font-weight: 200;
  color: var(--cor4);
}

.modal-content p {
  margin: 10px auto 30px auto;
  color: var(--cor2);
  text-align: left;
  width: 80%;
}

.modal-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-info video, .modal-info > img {
  width: 40%;
}

.modal-info-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-info-text > p {
  width: 90%;
  padding: 0;
  margin: 0;
}

.modal-info-text > span {
  width: 90%;
  margin: 10px auto 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--cor4);
}

.modal-info-text > span > i {
  margin: 0;
  padding: 0;
}

.modal-info-text > span > p {
  margin: 0;
  padding: 0;
}

.modal-exemplo {
  margin: 20px auto 60px auto;
  width: 100%;
  font-family: var(--fontFamily);
}

.modal-exemplo > h3 {
  width: 80%;
  margin: 30px auto 40px auto;
  text-align: left;
  font-size: 20px;
  color: var(--cor4);
}

.modal-exemplo-images {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.modal-exemplo-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
}

.modal-exemplo-img > img {
  width: 200px;
  height: 250px;
  object-fit: cover;
}

.modal-exemplo-img > figcaption {
  margin: 0 auto;
  padding: 5px 0;
  width: 100%;
  border-left: 1px solid var(--cor4);
  border-bottom: 1px solid var(--cor4);
  text-align: left;
  text-indent: 10px;
  color: var(--cor4);
}

.modal-toggle:checked ~ .modal {
  max-height: 2000px;
  margin-top: 10px;
}

/* --- */

.produtos-infos-plus {
  margin: 100px 0;
  background-color: #fff;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 60px 20px;
  font-family: var(--fontFamily);
  width: 100%;
}

.produtos-infos-plus > p {
  margin: 20px 0;
}

.infos-plus {
  width: 90%;
  max-width: 1300px;
}

.infos-plus > h2 {
  padding-bottom: 70px;
  max-width: 370px;
  margin: auto auto auto 40px;

  font-size: 38px;
}

.infos-plus > p {
  max-width: 700px;
  /* text-indent: 10px; */
  font-size: 16px;
}

.plus-plus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 350px;
  margin-top: 40px;
}

.plus-text {
  width: 40%;
  height: 100%;
}

.plus-text > span {
  display: flex;
  gap: 20px;
  padding-top: 20px;
}

.plus-text > span > p {
  border-left: 2px solid var(--cor4);
  padding-left: 10px;
}

.plus-text > span > p > strong,
.infos-plus > p > strong {
  color: var(--cor4);
}

.plus-text > span > i {
  font-size: 25px;
  color: var(--cor4);
}

.plus-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.plus-image > img {
  width: 150px;
  height: 350px;
  object-fit: cover;
}

.plus-bottom {
  margin: 70px 0 50px 0;
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.plus-bottom > span > h3 {
  color: var(--cor4);
  font-size: 28px;
  font-weight: 100;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--cor4);
}

.plus-bottom > span > p {
  padding: 5px 0 0 0;
  font-size: 16px;
}

.plus-bottom > span > p > strong {
  color: var(--cor4);
  font-size: 18px;
}

/* --- */

.produtos-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  font-family: var(--fontFamily);
  margin: 0 auto;
  width: 90%;
}

.produtos-bottom > span > h3 {
  color: var(--cor1);
  font-weight: 100;
  padding-bottom: 10px;
}

/* .produtos-bottom > span:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 10px;
} */

.produtos-bottom > span:nth-child(1) > img:last-child{
  border-left: 1px solid white;
  padding-left: 5px;
}

.persax {
  width: 180px;
  padding-bottom: 10px;
  margin: auto;
}

.produtos-bottom > span:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}

.produtos-bottom > span:nth-child(2) > img {
  width: 140px;
}

.produtos-bottom > span:nth-child(2) > img:not(:last-child) {
  width: 70px;
  padding: 5px;
  background-color: white;
  border-radius: 5px;
}

/* ------- */

.contact {
  background-color: var(--cor1);
  box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.192);
  font-family: var(--fontFamily);
  padding-bottom: 60px;
}

.contact-itens {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 60px 0;
  max-width: 1200px;
  width: 90%;
}

.contact-header {
  display: flex;
  justify-content: space-between;
}

.contact-itens > h3 {
  text-align: right;
  width: 100%;
  max-width: 1200px;
  font-weight: 300;
  font-family: var(--fontOswald);
  padding: 60px 0 0 0;
  color: var(--cor4);
}

.contact-itens > h2 {
  font-weight: 100;
  color: var(--cor4);
  font-size: 40px;
  width: 400px;
}

.contact-infos {
  width: 80%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 120px auto 80px auto;
}

.contact-infos a {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  cursor: pointer;
  text-decoration: none;
  color: var(--cor2);

  animation: appear2 1ms ease-in-out forwards;
  animation-timeline: view();
  animation-range: cover 0% cover 35%;
}

@keyframes appear2 {
  0% {
    opacity: 0.6;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.contact-infos > a > h3,
.contact-infos > a > i {
  color: var(--cor4);
}

.text iframe {
  width: 100%;
  margin: 0 auto;
}

.text p {
  padding: 10px 0;
  animation: appear2 1ms ease-in-out forwards;
  animation-timeline: view();
  animation-range: cover 0% cover 35%;
}

.text > p > i,
.text > p > strong {
  color: var(--cor4);
}

/* --------- */
footer {
  width: 100%;
  height: 420px;
  background-color: #e9e7e7;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;

  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.116);
}

footer > img {
  width: 200px;
  height: 250px;
  border-radius: 5px;
}

.footer-loc {
  display: flex;
  flex-direction: column;
  border-left: 1px dashed var(--cor4);
  border-right: 1px dashed var(--cor4);
  padding: 0 40px;

  max-width: 220px;
  height: 250px;
}

.footer-loc h3 {
  font-family: var(--fontFamily);
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-loc p {
  font-family: var(--fontFamily);
  font-weight: 400;
}

.footer-loc > a {
  font-family: var(--fontOswald);
  font-weight: 300;
  text-decoration: none;
  color: var(--cor2);
  margin: 10px 0;
}

.footer-loc a i {
  padding: 0 10px;
  color: var(--cor4);
}

.footer-social {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 250px;
}

.footer-social h3 {
  font-family: var(--fontFamily);
  font-weight: 200;
  text-align: right;
}

.footer-social > div {
  width: 100%;
  text-align: left;
  display: inline-flex;
  gap: 20px;
  margin: 30px 0 30px 0;
}

.footer-social > div > a > i {
  text-decoration: none;
  color: var(--cor4);
}

.footer-social > p {
  font-family: var(--fontOswald);
  font-weight: 300;
  text-align: center;
}

.theuz > a{
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: baseline;
  font-size: 12px;
  color: var(--cor2);
  text-decoration: none;
  font-family: var(--fontOswald);
  font-weight: 300;
}

.theuz > a > img{
  width: 60px;
}

/* ------ */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  position: relative;
  width: 2.5em;
  height: 2.5em;
  transform: rotate(165deg);
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 0.25em;
  transform: translate(-50%, -50%);
}

.loader:before {
  animation: before8 2s infinite;
}

.loader:after {
  animation: after6 2s infinite;
}

@keyframes before8 {
  0% {
    width: 0.5em;
    box-shadow: 1em -0.5em rgba(111, 202, 220, 0.75),
      -1em 0.5em rgb(204, 204, 204);
  }

  35% {
    width: 2.5em;
    box-shadow: 0 -0.5em rgba(111, 202, 220, 0.75), 0 0.5em rgb(204, 204, 204);
  }

  70% {
    width: 0.5em;
    box-shadow: -1em -0.5em rgba(111, 202, 220, 0.75),
      1em 0.5em rgb(204, 204, 204);
  }

  100% {
    box-shadow: 1em -0.5em rgba(111, 202, 220, 0.75),
      -1em 0.5em rgb(204, 204, 204);
  }
}

@keyframes after6 {
  0% {
    height: 0.5em;
    box-shadow: 0.5em 1em rgba(35, 97, 76, 0.75),
      -0.5em -1em rgba(233, 169, 32, 0.75);
  }

  35% {
    height: 2.5em;
    box-shadow: 0.5em 0 rgba(35, 97, 76, 0.75),
      -0.5em 0 rgba(233, 169, 32, 0.75);
  }

  70% {
    height: 0.5em;
    box-shadow: 0.5em -1em rgba(35, 97, 76, 0.75),
      -0.5em 1em rgba(233, 169, 32, 0.75);
  }

  100% {
    box-shadow: 0.5em 1em rgba(35, 97, 76, 0.75),
      -0.5em -1em rgba(233, 169, 32, 0.75);
  }
}

.loader {
  position: absolute;
  top: calc(50% - 1.25em);
  left: calc(50% - 1.25em);
}

@media screen and (min-width: 300px) and (max-width: 800px) {
  header nav {
    display: none;
  }

  header img {
    width: 50%;
    object-fit: contain;
  }

  #checkbox {
    display: none;
  }

  .toggle,
  .bars {
    display: block;
    z-index: 5;
  }

  .toggle {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition-duration: 0.5s;
    margin-right: 30px;
  }

  .bars {
    width: 100%;
    height: 4px;
    background-color: var(--cor1);
    border-radius: 4px;
  }

  #bar2 {
    transition-duration: 0.8s;
  }

  #bar1,
  #bar3 {
    width: 70%;
  }

  #checkbox:checked + .toggle .bars {
    position: absolute;
    transition-duration: 0.5s;
  }

  #checkbox:checked + .toggle #bar2 {
    transform: scaleX(0);
    transition-duration: 0.5s;
  }

  #checkbox:checked + .toggle #bar1 {
    width: 100%;
    transform: rotate(45deg);
    transition-duration: 0.5s;
  }

  #checkbox:checked + .toggle #bar3 {
    width: 100%;
    transform: rotate(-45deg);
    transition-duration: 0.5s;
  }

  #checkbox:checked + .toggle {
    transition-duration: 0.5s;
    transform: rotate(180deg);
  }

  .small-menu {
    display: none;
    background-color: #333333f1;
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 4;
    top: 0;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    padding-top: 80px;
  }

  .small-menu a {
    text-decoration: none;
    color: var(--cor1);
    font-size: 50px;
    font-family: var(--fontFamily);
  }

  .small-menu a:first-child {
    margin-top: 100px;
  }

  #checkbox:checked + .toggle + .small-menu {
    display: flex;
    z-index: 4;
  }

  /* ----------- */

  .text-carr {
    width: 80%;
    max-width: 650px;
  }

  .text-carr h2 {
    font-family: var(--fontFamily);
    font-weight: 800;
    color: var(--cor1);
    font-size: 30px;
  }

  /* ----------- */
  .information {
    padding: 60px 0 140px 0;
  }
  .information > h2 {
    font-size: 25px;
    padding: 50px 0;
  }

  .information > h2 > strong {
    font-size: 60px;
  }

  .topic > i {
    font-size: 40px;
  }

  .topic-text > h2 {
    font-size: 20px;
  }

  .topic-text > p {
    font-size: 14px;
  }

  /* ----------- */

  /* .description-top h2 {
    font-weight: 300;
    margin: 40px 0;
  }

  .description-top p {
    font-size: var(--fontPequena);
  }

  .description-middle {
    font-size: var(--fontPequena);
  }

  .description-middle i {
    font-size: 28px;
  }

  .bottom-img img {
    height: 600px;
  }

  .bottom-text {
    width: 100%;
    height: 430px;
    min-height: fit-content;
    padding: 40px 20px;
  }

  .bottom-text h2 {
    padding-bottom: 20px;
    font-size: 18px;
  }

  .bottom-text p {
    padding: 5px 0;
    width: 55%;
    text-align: justify;
    font-size: 13px;
  } */

  /* ----------- */
  .produtos > h3 {
    font-size: 16px;
    padding: 10px 0 0 0;
  }

  .prod-title {
    margin-top: 40px;
  }

  .prod-title > h2 {
    font-size: 30px;
  }

  .produtos > p {
    font-size: 14px;
  }

  .produtos > h2 {
    font-weight: 300;
  }

  .open-modal {
    gap: 20px;
    height: 350px;
    width: 100%;
  }

  .open-modal > img {
    width: 40%;
    height: 100%;
  }

  .open-modal figcaption p {
    width: 95%;
    font-size: 14px;
  }

  .open-modal h4 {
    font-size: 22px;
  }

  .open-modal h5 {
    padding: 5px 10px;
    font-size: 14px;
  }

  /* -- */

  .modal-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 40px 10px;
    text-align: center;
    font-family: var(--fontFamily);
    background-color: var(--cor1);
  }

  .modal-content > h3 {
    font-size: 28px;
  }

  .modal-content > h4 {
    font-size: 20px;
  }

  .modal-info {
    justify-content: space-between;
    flex-direction: column;
  }

  .modal-info video {
    width: 100%;
    padding-bottom: 20px;
  }

  .modal-info-text {
    width: 96%;
    gap: 10px;
  }

  .modal-info-text > p {
    width: 98%;
    font-size: 14px;
  }

  .modal-info-text > span {
    width: 90%;
    margin: 10px auto 0 auto;
  }

  .modal-info-text > span > p {
    font-size: 14px;
  }
  /* - */

  .modal-exemplo > h3 {
    font-size: 18px;
  }

  .modal-exemplo-images {
    gap: 30px;
    padding-right: 10px;
  }

  .modal-exemplo-img > img {
    width: 150px;
    height: 200px;
  }

  .modal-exemplo-img > figcaption {
    font-size: 14px;
  }
  /* ----------- */

  .produtos-infos-plus {
    margin: 100px 0;
    background-color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 60px 20px;
    font-family: var(--fontFamily);
    width: 100%;
  }

  .infos-plus > h2 {
    max-width: 300px;
    margin: auto auto auto 10px;
    font-size: 28px;
  }

  .infos-plus > p {
    font-size: 14px;
  }

  .plus-plus {
    flex-direction: column-reverse;
    width: 100%;
    height: fit-content;
    margin-top: 40px;
  }

  .plus-text {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-top: 30px;
  }

  .plus-text > span > p {
    font-size: 14px;
  }

  .plus-text > span > i {
    font-size: 22px;
  }

  .plus-bottom > span > h3 {
    font-size: 24px;
  }

  .plus-bottom > span > p {
    font-size: 14px;
  }

  .plus-bottom > span > p > strong {
    font-size: 16px;
  }

  /* --- */

  .produtos-bottom > span > h3 {
    font-size: 14px;
  }

  .produtos-bottom > span:nth-child(1) > img:last-child {
    width: 180px;
  }

  .persax {
    width: 100px;
    padding-bottom: 5px;
  }

  .produtos-bottom > span:nth-child(2) > img {
    width: 90px;
  }

  .produtos-bottom > span:nth-child(2) > img:not(:last-child) {
    width: 40px;
  }
  /*  */

  .contact-itens {
    padding: 30px 0;
  }

  .contact-itens > h3 {
    font-size: 16px;
  }

  .contact-itens > h2 {
    margin-top: 40px;
    font-size: 30px;
    width: 270px;
  }

  /*

  .prod-title > h2 {
    font-size: 30px;
  } */
  /*  */

  .text p {
    font-size: 15px;
  }

  .contact-infos {
    width: 95%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  .contact-infos > a > h3 {
    font-size: 16px;
  }

  .contact-infos a {
    font-size: 13px;
    width: 130px;
  }

  .contact-infos a p {
    width: 250px;
    text-align: center;
  }
  /* ----------- */
  footer {
    height: fit-content;
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
    padding: 70px 0 70px 0;
  }

  footer > img {
    width: 200px;
    height: 200px;
    padding-left: 40px;
  }

  .footer-loc {
    border-left: none;
    border-right: none;
    padding: 0 0 0 40px;

    height: 180px;
  }

  .footer-social {
    display: flex;
    flex-direction: column;
    height: 180px;
    padding-left: 40px;
  }

  .footer-social h3 {
    text-align: left;
  }

  .footer-social > div {
    margin: 30px 0 40px 0;
  }
}

@media screen and (min-width: 350px) and (max-width: 380px) {
  .bottom-text h2 {
    padding-bottom: 5px;
  }

  .bottom-text p {
    padding: 3px 0;
  }
}
