@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@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");

:root {
  --corPrimary: #028db4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 62.5%;
}
/*
:target {
  scroll-margin-top: 5rem;
}
*/

a {
  text-decoration: none;
  cursor: pointer;
}

body::-webkit-scrollbar {
  width: 12px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: black; /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: var(--corPrimary); /* color of the scroll thumb */
}

body {
  font-family: Poppins;
  -webkit-font-smoothing: antialiased;
}

header {
  width: 100vw;
  height: 100vh;
  background-color: var(--corPrimary);
}

#bar-fix-top {
  width: 100%;
  height: 6vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #b3b3b3;
  color: #727272;
}

#bar-fix-top .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

#bar-fix-top span {
  font-size: 0.8rem;
  color: #919191;
}

.info-contato-top {
  display: flex;
  flex-direction: row;
  padding-left: 10px;
  padding-right: 10px;
  align-items: center;
}

.info-contato-top i {
  padding-left: 10px;
  padding-right: 10px;
  color: var(--corPrimary);
}

.social-media-top {
  padding-right: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.social-media-top a {
  padding-right: 30px;
  color: black;
}

.social-media-top a:hover {
  padding-right: 30px;
  color: var(--corPrimary);
  transition: 0.5s;
}

/*Menu*/

#menu a {
  color: var(--corPrimary);
  text-decoration: none;
  transition: 0.3s;
}

#menu a:hover {
  opacity: 0.7;
}

.logo img {
  height: 40px;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #23232e;
  height: 8vh;
}

.nav-list {
  list-style: none;
  display: flex;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

.nav-list li {
  letter-spacing: 3px;
  margin-left: 32px;
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: #fff;
  margin: 8px;
  transition: 0.3s;
}

@media (max-width: 999px) {
  body {
    overflow-x: hidden;
  }

  #bar-fix-top {
    display: none;
  }

  .logo img {
    height: 30px;
  }

  .nav-list {
    position: absolute;
    top: 8vh;
    right: 0;
    width: 100vw;
    height: 92vh;
    background: #23232e;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
    opacity: 97%;
  }
  .nav-list li {
    margin-left: 0;
    opacity: 0;
  }
  .mobile-menu {
    display: block;
  }
}

.nav-list.active {
  transform: translateX(0);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
  opacity: 0;
}

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-5px, -7px);
}

header {
  background: url(/img/bgHome.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

/*AboutUs*/

#aboutUs {
  width: 100vw;
  height: 100vh;
  background: url(/img/bgAboutUs.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#aboutUs .container {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.imgAboutUs {
  display: flex;
  align-self: center;
  justify-content: center;
  width: 30%;
}

.imgAboutUs img {
  max-height: 600px;
}

.textAboutUs {
  width: 50vw;
}

.titlePadrao {
  font-size: 5rem;
  color: #028db4;
  font-weight: 900;
}

.subTitlePadrao {
  font-size: 2.5rem;
  color: #eee;
  font-weight: 300;
  letter-spacing: 1rem;
  text-transform: uppercase;
}

.paragraph {
  padding-top: 3rem;
  font-size: 1.5rem;
  color: #b3b3b3;
  font-weight: 200;
}

.paragraph span {
  font-weight: 400;
  font-style: italic;
  color: #028db4;
}

.destaquesAbout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #eee;
  font-size: 1.5rem;
  font-weight: 200;
  padding: 1rem 0 0 3rem;
  line-height: 1.8rem;
}

.item-destaque-about {
  padding-left: 2rem;
  margin-left: 2rem;
  border-left: 1px solid #eee;
}

.icon-destaque-about {
  width: 30px;
  padding-right: 3rem;
  font-size: 3rem;
  color: #028db4;
}

.btn-aboutus {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: transparent;
  border: none;
  font-size: 2rem;
  color: #028db4;
  padding-top: 3rem;
  transition: 0.5s all;
}

.btn-aboutus:hover {
  color: #eee;
  transform: scale(110%);
}

/* --------------------------------------------------------- BANNER 1 --------------------------------------------------------------------------*/

#banner-1 {
  width: 100vw;
  height: auto;
  background-image: url(../img/banner/bg-banner1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 3rem 0 0 0;
}

#banner-1 .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.img-equipamento-banner-1 {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 1rem;
}

.img-equipamento-banner-1 img {
  height: 400px;
}

.text-equipamento-banner-1 {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.text-equipamento-banner-1 h1 {
  font-weight: 300;
  font-size: 3rem;
  color: #eee;
  line-height: 3rem;
}

.enfase-banner {
  color: #eee;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 6rem;
  line-height: 8rem;
}

.frases-banner {
  color: #eee;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.3rem;
  padding-left: 6rem;
}

/* -------------------------------- EQUIPAMENTOS -------------------------------------------*/

#equipamentos {
  width: 100vw;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #028db4, #000);
  padding: 3rem 0 3rem 0;
}

#equipamentos .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text-section-equipamentos {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 0;
}

.title-section-equipamento {
  display: block;
  text-transform: uppercase;
  font-size: 5rem;
  font-weight: 400;
  color: #eee;
  padding: 0 0 1rem 0;
  line-height: 5rem;
}

.title-section-equipamento strong {
  border-radius: 5rem;
  padding: 1rem 2rem 1rem 2rem;
  letter-spacing: 0.5rem;
}

.subTitle-section-equipamentos {
  display: block;
  font-size: 3rem;
  font-weight: 300;
  color: #b3b3b3;
}

.subTitle-section-equipamentos strong {
  color: #eee;
}

.title-tumb-equipamento {
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #eee;
  text-transform: uppercase;
  text-align: center;
}

.galeria-section-equipamentos {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
  transform-style: preserve-3d;
}

.tumb-equipamento {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transform-style: preserve-3d;
  width: 19%;
  height: 300px;
  padding: 2rem 0 2rem 0;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.125);
  border-radius: 4rem;
}

.tumb-equipamento img {
  padding: 2rem 0;
  height: 150px;
  transition: 0.5s ease-in-out;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.tumb-equipamento button {
  padding: 1rem 3rem 1rem 3rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: #eee;
  font-weight: 400;
  font-size: 1.5rem;
  border: none;
  transition: 0.5s ease-in-out;
  border-radius: 3rem;
  margin-bottom: 1rem;
  border: solid 1px rgba(255, 255, 255, 0.23);
  backdrop-filter: blur(10px);
}

.tumb-equipamento:hover img,
.tumb-equipamento:hover button {
  transform: translate3d(0, 0, 150px);
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

/* --------------------------------- Detalhes Equipamento ------------------------------------- */

.detalhe-equipamento {
  display: none;
  z-index: 2000;
}

.detalhe-equipamento:target {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: #eee;
}

.detalhe-equipamento .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.img-detalhe-equipamento {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.description-detalhe-equipamento {
  padding: 2rem 0 0 0;
  font-size: 1.5rem;
  text-align: center;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.125);
}

.detalhe-equipamento img {
  height: 500px;
  padding-bottom: 2rem;
}

.section-description {
  position: relative;
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5rem;
  padding: 2rem 2rem 2rem 2rem;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  animation: scaleIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 300;
  border: 1px solid rgba(255, 255, 255, 0.125);
}

.section-description .btn-fechar {
  position: absolute;
  right: 40px;
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.125);
  border-radius: 3rem;
  padding: 1rem 2rem;
  color: #eee;
  background-color: rgba(255, 255, 255, 0.07);
  transition: 0.3s ease-in-out;
}

.section-description .btn-fechar::before {
  content: "X ";
}

.section-description .btn-fechar:hover {
  border: solid 0.1px rgba(0, 0, 0, 0);
  color: #028db4;
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0);
}

.title-detalhe-equipamento {
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  padding-bottom: 2rem;
}

.iconWhatsEquipamentos {
  position: relative;
  top: 1rem;
  color: #eee;
}

.btn-orcamento {
  border: none;
  color: #eee;
  font-size: 1.8rem;
  padding: 1rem 2rem 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 3rem;
  border: solid 1px rgba(255, 255, 255, 0.07);
  font-weight: 400;
  text-transform: uppercase;
  margin: 1rem 0 1rem 0;
}

.btn-orcamento > i {
  color: greenyellow;
}

/* --------------------------------- Slide Equipamentos -----------------------------------*/
.carrousel-equip-destaque {
  width: 100vw;
  height: 400px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-image: url(../img/bg-carrousel.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 2rem 0 2rem 0;
}
.depoimentos {
  width: 100%;
  height: 100%;
  max-width: 60%;
  position: relative;
  overflow: hidden;
}

.depoimentos .slide {
  height: 100%;
  padding: 0 2rem;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.depoimentos .slide:active {
  cursor: grabbing;
}

.slide img {
  height: 300px;
  max-height: 400px;
}

.description-slider {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
p.title-slider-equip {
  font-size: 4rem;
  font-weight: 600;
  color: #eee;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  line-height: 4rem;
}

p.title-slider-equip > strong {
  color: #028db4;
}

p.txt-slide-equip {
  font-size: 2rem;
  font-weight: 200;
  line-height: 2.5rem;
  color: #eee;
  padding: 0 0 0 2rem;
}

.description-slider button {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #eee;
  border-radius: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  padding: 1rem 2rem 1rem 2rem;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.description-slider button:hover {
  border-color: transparent;
  background-color: #000;
  color: #028db4;
}

.description-slider i {
  color: greenyellow;
}

/* --------------------------------- QUESTION ---------------------------------------------*/

#question {
  width: 100vw;
  height: auto;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #028db4;
  padding: 3rem 0 3rem 0;
}

#question .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#question i {
  font-size: 6rem;
  color: #eee;
  text-transform: uppercase;
  padding-bottom: 2rem;
}

.title-question {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 3rem;
}
#question h2 {
  font-size: 4rem;
  color: #eee;
  text-transform: uppercase;
  letter-spacing: 0.6rem;
}

#question p {
  font-weight: 100;
  font-size: 4rem;
  color: #eee;
  line-height: 4rem;
}

.accordion {
  width: 50%;
  --bs-accordion-border-width: none;
  background-color: transparent;
}

.accordion-button {
  font-size: 2rem;
  --bs-accordion-btn-bg: #028db4;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-body {
  background-color: #000;
  font-size: 1.5rem;
  color: #eee;
  font-weight: 200;
}

/* -------------------------NEWS------------------------------------------------------------*/

.news {
  width: 100vw;
  min-height: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.news .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title-news h2 {
  font-size: 3rem;
  color: #028db4;

  letter-spacing: 0.6rem;
}

.title-news p {
  font-size: 2rem;
  color: #eee;
  letter-spacing: 0.6rem;
}

.form-news {
  position: relative;
  width: 500px;
  height: 50px;
}

.form-news input {
  outline: none;
  border: none;
  display: inline;
  width: 70%;
  height: 100%;
  margin: 0;
  background-color: transparent;
  border: 1px solid #028db4;
  border-radius: 3rem 0 0 3rem;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 0 0 3rem;
  font-size: 2rem;
  color: #028db4;
}

.form-news input::placeholder {
  padding: 0 0 0 3rem;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.form-news button {
  position: absolute;
  right: 0;
  top: 0;
  outline: none;
  border: none;
  height: 100%;
  width: 30%;
  border: 1px solid #028db4;
  border-radius: 0 3rem 3rem 0;
  background-color: #028db4;
  font-size: 2rem;
  padding: 0 2rem 0 0;
}

/* -------------------------TRABALHE CONOSCO------------------------------------------------------------*/
#trabalheConosco {
  width: 100vw;
  background-image: url(../img/bgTrabalheConosco.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 0 0;
}

#trabalheConosco .iconTeam {
  font-size: 6rem;
  color: #eee;
  text-transform: uppercase;
  padding-bottom: 2rem;
}

#trabalheConosco h2 {
  font-size: 4rem;
  color: #eee;
  text-transform: uppercase;
  letter-spacing: 0.6rem;
}

#trabalheConosco p {
  font-weight: 300;
  font-size: 2rem;
  color: #028db4;
}

#trabalheConosco .container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}

#trabalheConosco img {
  height: 500px;
}

.formTrabalheConosco {
  color: #eee;
  padding: 0 0 3rem 3rem;
}

.formTrabalheConosco .form-group input,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  outline: none;
  border: none;
  margin: 0;
  background-color: transparent;
  border: 1px solid #028db4;
  border-radius: 3rem;
  padding: 1rem 0 1rem 3rem;
  font-size: 2rem;
  color: #028db4;
}

.formTrabalheConosco .form-group label {
  font-weight: 100;
  padding: 1rem 0 1rem 0;
  font-size: 1.5rem;
  letter-spacing: 0.3rem;
}

.formTrabalheConosco .form-group button {
  color: #23232e;
  margin-top: 3rem;
  border: 1px solid #028db4;
  border-radius: 3rem;
  background-color: #028db4;
  font-size: 2rem;
  padding: 1rem 2rem 1rem 2rem;
}
.formTrabalheConosco .form-group input[type="file"] {
  width: 100%;
  box-sizing: border-box;
  outline: none;
  border: none;
  margin: 0;
  background-color: transparent;
  border: none;
  padding: 1rem 0 1rem 3rem;
  font-size: 2rem;
  color: #028db4;
}

.formTrabalheConosco
  .form-group
  input[type="file"]::-webkit-file-upload-button {
  background-color: #028db4;
  color: white;
  padding: 8px 15px;
  margin-right: 2rem;
  border: none;
  cursor: pointer;
}

/* ----------------------------- CONTACT ----------------------------------------------*/

.contact {
  width: 100vw;
  height: 300px;
  background-color: #000;
}

.contact .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  border-bottom: solid 1px rgba(255, 255, 255, 0.07);
}

.logo-contact img {
  max-height: 150px;
}

.menu-home-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.menu-home-contact a {
  font-style: normal;
  color: #eee;
  font-size: 1.2rem;
  font-weight: 200;
  transition: 0.4s ease-in-out;
  letter-spacing: 0.3rem;
  border-bottom: 1px solid transparent;
}

.menu-home-contact a:hover {
  color: #028db4;
  border-bottom: 1px solid #028db4;
}

.infos-contact {
  color: #eee;
  font-size: 1.2rem;
  font-weight: 200;
  text-align: right;
  letter-spacing: 0.3rem;
}

.socialMedia-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

.socialMedia-contact a {
  color: #eee;
  transition: 0.4s ease-in-out;
}

.socialMedia-contact a:hover {
  color: #028db4;
}

/* --------------------------------WHATSAPP FOOTER----------------------------------------*/

.whats-footer {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
}

.whats-footer i {
  font-size: 3rem;
  color: greenyellow;
}

/*Footer*/

footer {
  width: 100vw;
}

.copyright-footer {
  font-weight: 300;
  font-size: 1rem;
  width: 100%;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: black;
  color: var(--corPrimary);
  letter-spacing: 0.2em;
}

/*Cookies*/

.cookies-msg {
  width: 80%;
  background-color: #fff;
  position: fixed;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%);
  z-index: 3000;
  display: none;
}

.cookies-msg.mostrar {
  display: block;
}

.cookies-msg .cookies-txt {
  display: flex;
  align-items: center;
  text-align: justify;
  padding: 20px;
  font-size: 1.5rem;
}

.cookies-msg .btn-cookies {
  margin-left: 30px;
}

.cookies-msg .btn-cookies button {
  background-color: #000;
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  padding: 10px 40px;
  cursor: pointer;
  transition: 0.2s;
}

.cookies-msg .btn-cookies button:hover {
  transform: scale(0.9);
}
/* -------------------------------------- ANIMAÇÃO -------------------------------------------------*/

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: translateX(200px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes textIn {
  from {
    opacity: 0;
    transform: translateX(200px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes animColor {
  from {
    background-color: #028db4;
  }

  to {
    background-color: #919191;
  }
}

/* -------------------------------------- CLASSES ANIMAÇÃO -------------------------------------------------*/

.animTextIn {
  animation: textIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-timeline: view();
  animation-range: cover 0% cover 50%;
}

.imgScaleIn {
  animation: scaleIn 1s cubic-bezier(0.85, 0, 0.15, 1) forwards;
  animation-timeline: view();
  animation-range: cover 0% cover 50%;
}

.fadeIn {
  animation: fadeIn 1s forwards;
  animation-timeline: view();
  animation-range: cover 0% cover 40%;
}

/* -------------------------------- Media Query -------------------------------------------*/

/* --------------------- 1280px -----------------------------------------------------------*/

@media screen and (max-width: 1270px) {
}

/* --------------------- 678px -----------------------------------------------------------*/

@media screen and (max-width: 678px) {
  .carousel .list .item .content {
    padding-right: 0;
  }
  .carousel .list .item .content .author {
    font-size: 2rem;
    letter-spacing: 0.3rem;
  }

  .carousel .list .item .content .title {
    font-size: 1.8rem;
    letter-spacing: 0.3rem;
  }

  .carousel .list .item .content .topic {
    font-size: 1.5rem;
  }

  .carousel .list .item .content .des {
    font-size: 1.3rem;
  }

  .arrows {
    top: 78%;
  }

  .carousel {
    height: 92vh;
  }
  #menu {
    position: relative;
    z-index: 100;
  }

  /*About Us*/

  #aboutUs {
    height: auto;
    padding: 3rem 2rem 3rem 2rem;
    text-align: center;
  }

  #aboutUs .container {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .imgAboutUs {
    display: none;
  }

  .textAboutUs {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .titlePadrao {
    font-size: 4rem;
  }

  .destaquesAbout {
    flex-direction: column;
    padding: 2rem 0 0 0;
  }

  .icon-destaque-about {
    padding: 0 0 1rem 0;
  }

  .item-destaque-about {
    padding: 0;
    border: none;
    margin: 0;
  }
  /*BANNER 1*/

  #banner-1 {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
  }

  #banner-1 .container {
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
    position: relative;
  }

  .img-equipamento-banner-1 {
    align-items: center;
    justify-content: center;
    padding: 0;
    position: absolute;
    bottom: 0;
  }

  .img-equipamento-banner-1 img {
    min-height: 450px;
  }

  .text-equipamento-banner-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 4rem;
  }

  .text-equipamento-banner-1 h1 {
    font-weight: 300;
    font-size: 4rem;
    color: #eee;
    line-height: 4.2rem;
  }

  .enfase-banner {
    color: #eee;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 4rem;
    line-height: 4rem;
    color: #028db4;
  }

  .frases-banner {
    color: #eee;
    font-weight: 300;
    font-size: 2rem;
    letter-spacing: 0.3rem;
    padding: 0;
    padding-top: 1.5rem;
  }

  /* -------------------------------- EQUIPAMENTOS -------------------------------------------*/

  #equipamentos {
    padding: 3rem 2rem 3rem 2rem;
  }

  .text-section-equipamentos {
    width: 100%;
    padding: 0;
  }

  .title-section-equipamento {
    display: block;
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 400;
    color: #eee;
    padding: 0 0 1rem 0;
    line-height: 3rem;
    text-align: center;
  }

  .title-section-equipamento strong {
    font-weight: 900;
    font-size: 5rem;
    padding: 0;
    letter-spacing: 0.3rem;
    line-height: 7rem;
  }

  .subTitle-section-equipamentos {
    display: block;
    font-size: 3rem;
    font-weight: 300;
    color: #b3b3b3;
    letter-spacing: 0.2rem;
  }

  .subTitle-section-equipamentos strong {
    color: #eee;
    font-weight: 900;
  }

  .title-tumb-equipamento {
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 1rem;
    color: #eee;
    text-transform: uppercase;
    text-align: center;
  }

  .tumb-equipamento {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transform-style: preserve-3d;
    width: 100%;
    height: 300px;
    padding: 2rem 0 2rem 0;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-radius: 4rem;
  }

  .tumb-equipamento img {
    padding: 2rem 0;
    height: 190px;
    transition: 0.5s ease-in-out;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  .galeria-section-equipamentos {
    padding-top: 3rem;
  }

  /* --------------------------------- Detalhes Equipamento ------------------------------------- */

  .description-detalhe-equipamento {
    padding: 2rem 0 0 0;
    font-size: 1.2rem;
    text-align: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.125);
  }

  .detalhe-equipamento img {
    height: 200px;
    padding-bottom: 2rem;
  }

  .section-description {
    position: relative;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5rem;
    padding: 2rem 2rem 2rem 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    animation: scaleIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 300;
    border: 1px solid rgba(255, 255, 255, 0.125);
  }

  .section-description .btn-fechar {
    position: absolute;
    right: 20px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-radius: 3rem;
    padding: 1rem 2rem;
    color: #eee;
    background-color: rgba(255, 255, 255, 0.07);
    transition: 0.3s ease-in-out;
  }

  .section-description .btn-fechar::before {
    content: "X ";
  }

  .section-description .btn-fechar:hover {
    border: solid 0.1px rgba(0, 0, 0, 0);
    color: #028db4;
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0);
  }

  .title-detalhe-equipamento {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    padding-bottom: 2rem;
  }

  .iconWhatsEquipamentos {
    position: relative;
    top: 1rem;
    color: #eee;
  }

  .btn-orcamento {
    border: none;
    color: #eee;
    font-size: 1.8rem;
    padding: 1rem 2rem 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 3rem;
    border: solid 1px rgba(255, 255, 255, 0.07);
    font-weight: 400;
    text-transform: uppercase;
    margin: 1rem 0 1rem 0;
  }

  .btn-orcamento > i {
    color: greenyellow;
  }

  /* --------------------------------- Slide Equipamentos -----------------------------------*/

  .carrousel-equip-destaque {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .depoimentos {
    height: 100%;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .depoimentos .slide {
    height: 100%;
    padding: 0;
    cursor: grab;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .depoimentos .slide:active {
    cursor: grabbing;
  }

  .slide img {
    height: 200px;
    max-height: 200px;
  }

  .description-slider {
    padding-top: 2rem;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  p.title-slider-equip {
    font-size: 4rem;
    font-weight: 600;
    color: #eee;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    line-height: 4rem;
  }

  p.title-slider-equip > strong {
    color: #028db4;
  }

  p.txt-slide-equip {
    font-size: 2rem;
    font-weight: 200;
    line-height: 2.5rem;
    color: #eee;
    padding: 0 0 0 2rem;
  }

  /* --------------------------------- QUESTION ---------------------------------------------*/

  #question {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #028db4;
    padding: 3rem 2rem 3rem 2rem;
  }

  #question .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #question i {
    font-size: 6rem;
    color: #eee;
    text-transform: uppercase;
    padding-bottom: 2rem;
  }

  .title-question {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 3rem;
  }
  #question h2 {
    font-size: 4rem;
    color: #eee;
    text-transform: uppercase;
    letter-spacing: 0.6rem;
  }

  #question p {
    font-weight: 100;
    font-size: 4rem;
    color: #eee;
    line-height: 4rem;
  }

  .accordion {
    width: 100%;
    --bs-accordion-border-width: none;
    background-color: transparent;
  }

  .accordion-button {
    font-size: 2rem;
    --bs-accordion-btn-bg: #028db4;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .accordion-body {
    background-color: #000;
    font-size: 1.5rem;
    color: #eee;
    font-weight: 200;
  }

  /* -------------------------TRABALHE CONOSCO------------------------------------------------------------*/
  #trabalheConosco {
    padding: 3rem 1rem 3rem 1rem;
  }

  #trabalheConosco .iconTeam {
    font-size: 6rem;
    color: #eee;
    text-transform: uppercase;
    padding-bottom: 2rem;
  }

  #trabalheConosco h2 {
    text-align: center;
    font-size: 4rem;
    color: #eee;
    text-transform: uppercase;
    letter-spacing: 0.6rem;
  }

  #trabalheConosco p {
    font-weight: 300;
    font-size: 2rem;
    color: #028db4;
    text-align: center;
  }

  #trabalheConosco .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #trabalheConosco img {
    height: 300px;
  }

  .formTrabalheConosco {
    color: #eee;
    padding: 0;
  }

  .formTrabalheConosco .form-group input,
  .form-group textarea {
    width: 100%;
    box-sizing: border-box;
    outline: none;
    border: none;
    margin: 0;
    background-color: transparent;
    border: 1px solid #028db4;
    border-radius: 3rem;
    padding: 1rem 0 1rem 3rem;
    font-size: 2rem;
    color: #028db4;
  }

  .formTrabalheConosco .form-group label {
    font-weight: 100;
    padding: 1rem 0 1rem 0;
    font-size: 1.5rem;
    letter-spacing: 0.3rem;
  }

  .formTrabalheConosco .form-group button {
    color: #23232e;
    margin-top: 3rem;
    border: 1px solid #028db4;
    border-radius: 3rem;
    background-color: #028db4;
    font-size: 2rem;
    padding: 1rem 2rem 1rem 2rem;
  }
  .formTrabalheConosco .form-group input[type="file"] {
    width: 100%;
    box-sizing: border-box;
    outline: none;
    border: none;
    margin: 0;
    background-color: transparent;
    border: none;
    padding: 1rem 0 1rem 3rem;
    font-size: 2rem;
    color: #028db4;
  }

  .formTrabalheConosco
    .form-group
    input[type="file"]::-webkit-file-upload-button {
    background-color: #028db4;
    color: white;
    padding: 8px 15px;
    margin-right: 2rem;
    border: none;
    cursor: pointer;
  }

  /* -------------------------NEWS------------------------------------------------------------*/

  .news {
    width: 100vw;
    min-height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
  }

  .news .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .title-news h2 {
    font-size: 3rem;
    color: #028db4;

    letter-spacing: 0.6rem;
  }

  .title-news p {
    font-size: 2rem;
    color: #eee;
    letter-spacing: 0.6rem;
  }

  .form-news {
    position: relative;
    width: 90%;
    height: 50px;
  }

  .form-news input {
    outline: none;
    border: none;
    display: inline;
    width: 65%;
    height: 100%;
    margin: 0;
    background-color: transparent;
    border: 1px solid #028db4;
    border-radius: 3rem 0 0 3rem;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 0 0 1rem;
    font-size: 2rem;
    color: #028db4;
  }

  .form-news input::placeholder {
    padding: 0 0 0 1rem;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .form-news button {
    position: absolute;
    right: 0;
    top: 0;
    outline: none;
    border: none;
    height: 100%;
    width: 35%;
    border: 1px solid #028db4;
    border-radius: 0 3rem 3rem 0;
    background-color: #028db4;
    font-size: 1.7rem;
    padding: 0 2rem 0 0.5rem;
  }

  /* ----------------------------- CONTACT ----------------------------------------------*/

  .contact {
    width: 100vw;
    height: 100vh;
    background-color: #000;
  }

  .contact .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    border-bottom: solid 1px rgba(255, 255, 255, 0.07);
  }

  .logo-contact img {
    max-height: 150px;
  }

  .menu-home-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .menu-home-contact a {
    font-style: normal;
    color: #eee;
    font-size: 1.2rem;
    font-weight: 200;
    transition: 0.4s ease-in-out;
    letter-spacing: 0.3rem;
    border-bottom: 1px solid transparent;
  }

  .menu-home-contact a:hover {
    color: #028db4;
    border-bottom: 1px solid #028db4;
  }

  .infos-contact {
    color: #eee;
    font-size: 1.2rem;
    font-weight: 200;
    text-align: center;
    letter-spacing: 0.3rem;
  }

  .socialMedia-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .socialMedia-contact a {
    color: #eee;
    transition: 0.4s ease-in-out;
  }

  .socialMedia-contact a:hover {
    color: #028db4;
  }

  /*Cookies*/

  .cookies-msg {
    width: 90%;
    height: 35%;
    background-color: #fff;
    position: fixed;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%);
    z-index: 5000;
    display: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .cookies-msg.mostrar {
    display: block;
  }

  .cookies-msg .cookies-txt {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    padding: 20px;
    font-size: 1.5rem;
  }

  .cookies-msg .btn-cookies {
    margin: 0;
  }

  .cookies-msg .btn-cookies button {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    padding: 10px 40px;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 5rem;
  }

  .cookies-msg .btn-cookies button:hover {
    transform: scale(0.9);
  }
}
