* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  overflow-y: scroll;
  scroll-behavior: smooth;
  /* scroll-snap-type: y mandatory; */
}

section {
  /* Scroll Snap */
  scroll-snap-align: start;
}
/* hero */
.hero {
  width: 100%;
  height: 65rem;
  background-image: url(./img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; 
  background-position:center bottom;
}


/* navbar */
.navbar {
  display: none;
  justify-content: space-around;
  align-items: center;
  height: 6rem;
  width: 100%;
  z-index: 100;
  /* background: rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(225, 225, 225, 0.521); */
  position: fixed;
  box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.466);
  box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.466);
}


.logo {
  margin-left: 2rem;
  height: 3.4rem;
}

.contato img {
  width: 2.5rem;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  /* text-decoration: none; */
  gap: 2rem;
}

.navbar__item a {
  text-decoration: none;
  font-size: 1.2rem;
  color: rgb(0, 0, 0);
  text-shadow: 2px 4px 8px #00000070;
}

.navbar__item a:hover {
  color: #2e7769;
}

.navbar__item span {
  text-decoration: none;
}

.navbar__contato {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-shadow: 2px 4px 8px #00000070;
}

.navbar__contato a {
  text-decoration: none;
}
.navbar__contato span {
  font-size: 1.2rem;
  color: rgb(0, 0, 0);
  padding-left: 0.7rem;
}
.navbar__contato span:hover {
  color: #2e7769;
}


.navbar.scrolled{
  display: flex;
  background-color:#ffffff !important;
  transition: background-color 200ms linear;
}




.hero__container {
  text-align: center;
  /* Não sei sera um problema no futuro */
  padding-top: 12rem;
  color: white;
  text-shadow: 3px 4px 10px #000000;
  font-size: 2.0rem;
}

.mainlogo{
  width: 100%;
  max-width: 50rem;
  padding:1rem;
}

.fa-chevron-down {
  font-size: 10rem;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  cursor: pointer;
  color: white;
}
.fa-chevron-down:hover {
  mix-blend-mode: overlay;
  opacity: 0.6;
  text-shadow: 2px 4px 5px #00000070;
  padding-top: 1rem;
  font-size: 12rem;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}

/* servicos */

.servicos_container--card {
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 10rem;
  row-gap: 5rem;
  column-gap: 5rem;
}

.servicos__h2 {
  display: flex;
  padding-top: 7%;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
  font-style: medium;
  text-align: center;
  color: #4e4141;
  text-shadow: 8px 7px 11px #00000031;
}

.underline {
  background: #64926b;
  height: 1rem;
  width: 10%;
  text-shadow: 8px 7px 11px #00000031;
}

.servicos__card {
  color: white;
  background-size: cover;
  padding: 10rem 0 0;
  min-width: 45ch;
  max-width: 45ch;
  min-height: 60ch;
  max-height: 60ch;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 2px 38px 2px rgba(0, 0, 0, 0.466);
  box-shadow: 0px 2px 38px 2px rgba(0, 0, 0, 0.466);
  transition: transform 500ms ease;
}

.servicos__card:hover {
  transform: scale(1.1);
}
.servicos__card--content {
  --padding: 1.6rem;
  padding: var(--padding);
  background: linear-gradient(
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 0.7) 20%,
    hsl(0 0% 0% / 0)
  );
  transform: translateY(65%);
  transition: transform 500ms ease;
}

.servicos__card:hover .servicos__card--content {
  transform: translateY(0);
  transition-delay: 500ms;
}

.servicos__card--content > *:not(.servicos__card--title) {
  opacity: 0;
  transition: opacity 500ms linear;
}

.servicos__card:hover .servicos__card--content > *:not(.servicos__card--title) {
  opacity: 1;
  transition-delay: 800ms;
}

.servicos__card--title {
  position: relative;
  font-size: 1.4rem;
  text-align: center;
  padding-bottom: 0.5rem;
}
.servicos__card--title::after {
  content: '';
  position: absolute;
  height: 5px;
  left: calc(var(--padding) * -1);
  bottom: 0;
  width: calc(100% + var(--padding));
  background-color: rgb(81, 248, 132, 255);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms ease;
}

.servicos__card:hover .servicos__card--title::after {
  transform: scaleX(1);
}

.servicos__card--dc {
  color: rgb(255 255 255 / 0.8);
  padding-bottom: 3rem;
  padding-top: 2rem;
}
.servicos__card--button {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  border-radius: 0.5rem;
  color: black;
  background-color: rgb(81, 248, 132, 255);
  padding: 0.5em 1.25em;
}
.servicos__card--button:hover,
.servicos__card--button:focus {
  background-color: white;
}

/* sobre */
.sobre__container {
  height: 65rem ;
  width: 100%;
  background-image: url("./img/quemsomos--bg.png"), linear-gradient(
    to right,
    #44A08D,
    #093637
  );
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 13rem, 0rem 0rem;
}
.sobretext__container {
  background-color: white;
  width: 60%;
  height: 90%;
  margin-left: 35%;
  -webkit-box-shadow: 0px 2px 38px 2px rgba(0, 0, 0, 0.726);
  box-shadow: 0px 2px 38px 2px rgba(0, 0, 0, 0.726);
}
.sobre__text {
  display: flex;
  margin: 3rem;
  flex-direction: column;
  font-style: medium;
  color: #4e4141;
  text-shadow: 2px 4px 8px #00000070;
}
.sobretext__container h2 {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top:5rem;
  font-size: 3.5rem;
  font-style: medium;
  color: #4e4141;
  text-shadow: 8px 7px 11px #00000031;
}
.sobretext__container_p
{
  text-align: center;
  font-size: 2rem;
}
.sobre__mvv{
  margin-top: 3rem;
  display: grid;
  text-align: center;
  margin-left: 10%;
  margin-right: 10%;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  text-shadow: 2px 4px 8px #00000070;
}
.sobre__mvv p{
  font-size:1.5rem;
}
.sobre__subtext{
  color: #3f3f3f;
  padding-top: 15px;
  font-size: 2.2rem;
}
/* contato */
.contato__container {
  width: 100%;
  height: 55rem;
  padding: 1rem;
}

.contato__text {
  display: flex;
  padding-top: 7%;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
  font-style: medium;
  text-align: center;
  color: #4e4141;
  text-shadow: 8px 7px 11px #00000031;
}
.contato__options {
  margin:3.5rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.contato__options a {
  text-decoration: none;
  font-size: 1.2rem;
  color: rgb(0, 0, 0);
  text-shadow: 2px 4px 8px #00000070;
}
.p__subtext {
  color: #979797;
  padding-top: 15px;
  font-size: 1.2rem;
}
.p__info {
  padding-top: 15px;
  font-size: 1.3rem;
}

/* Metodologia */

.metodologia {
  position: relative;
  z-index: 10;
  max-width: 940px;
  margin: 0 auto;
  padding: 40px 0;
  border-top: 15px solid #2e7769;
  box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.342);
  text-align: center;
}

.metodologia h2 {
  color: #4e4141;
  font-size: 1.7rem;
}

.metodologia p {
  font-size: 1rem;
  color: #979797;
  margin: 15px 0;
}

/* Depoimentos */

.depoimentos {
  width: 100%;
  max-width: 50rem;
  padding-top: 3rem;
}

.depoimentos__content h2 {
  text-align: center;
  font-weight: normal;
  font-size: 2rem;
  color: rgb(0, 0, 0);
}

.depoimentos-box {
  margin: 10px auto;
  width: 100%;
  max-width: 50rem;
  margin-top: 5px;
  color: rgb(0, 0, 0);
  overflow: hidden;
}

.depoimentos-single {
  width: 100%;
  display: inline-block;
}

.depoimentos-single p {
  text-align: center;
  margin-bottom: 1rem;
  color: rgb(0, 0, 0);
  font-size: 1rem;
}

.depoimentos-single img {
  width:100%;
  max-width: 6.25rem;
  height: 6.25rem;
  display: block;
  margin: 10px auto;
  border-radius: 50%;
  -webkit-box-shadow: 0px 2px 10px 2px rgba(0, 0, 0, 0.432);
  box-shadow: 0px 2px 10px 2px rgba(0, 0, 0, 0.432);
}

/* Footer */

.footer__container {
  background: #000046; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #44A08D,
    #093637
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #44A08D,
    #093637
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer__logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-right: 2rem;
}
.footer__logosize {
max-width: 11rem;
max-height:11rem;
width: auto;
height: auto;
}

.footer__links {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
}

.footer__link--wrapper {
  display: flex;
}

.footer__link--items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 16px;
  text-align: left;
  width: 100%;
  max-width: 160px;
  box-sizing: border-box;
}

.footer__link--items h2 {
  margin-bottom: 16px;
  color: #fff;
}

.footer__link--items a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: 0.3s ease-out;
}

.footer__link--items a:hover {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s ease-out;
}

.social__icon--link {
  color: #fff;
  font-size: 3rem;
}

.social__media {
  width: 100%;
}

.social__media--wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}

.social__icons {
  display: flex;
  justify-content: space-between;
  padding-left: 2rem;
  align-items: center;
  column-gap: 1rem;
  font-size: 3rem;
}

.website__rights {
  color: #fff;
}

/* slick-slider */
.slick-dotted ul {
  list-style-type: none;
  text-align: center;
  position: relative;
  margin-top: 10px;
}

.slick-dotted li {
  display: inline-block;
  margin: 0 7px;
}

.slick-dotted button:focus {
  outline: 0;
}

.slick-dotted li button {
  width: 90%;
  max-width: 1rem;
  height: 1rem;
  border-radius: 1rem;
  color: #ffffff;
  border-width: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.452);
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.219);
  cursor: pointer;
  margin-bottom: 1rem;
  font-display: none;
}

li.slick-active button {
  background: #44A08D;
  color:#44A08D;
  transform: scale(1.5);
}

.slick-slide:focus {
  outline: none;
}

/* Fim do Slick */

#whatsappico{
  font-size: 2rem;
  color:#2e7769
}
@media (max-width: 1930px) {
  .sobretext__container {
    transform: scale(0.75)
  }
}
@media (max-width: 1700px) {
  html {
    font-size: 70%;
  }
}
@media (max-width: 1240px) {
  .servicos_container--card {
    grid-template-columns: 1fr 1fr;
  }
  .sobre__mvv p{
    font-size:1.3rem;
  }
  .metodologia{
    transform: scale(0.9);
  }
}
@media (max-width: 880px) {
  html {
    font-size: 40%;
  }
  .servicos__card {
    color: white;
    background-size: cover;
    min-width: 50ch;
    max-width: 50ch;
    min-height: 60ch;
    max-height: 60ch;
  }
  .metodologia__content h2{
    font-size: 3rem;
  }
  .metodologia__content p{
    font-size: 2rem;
  }
}
@media (min-width: 540px) {
  .sobre__containermobile{
    display: none;
  }
}
@media (max-width: 550px) {
  .navbar__container{
    display: none;
  }
  .navbar.scrolled.scrolled{
    display: none;
  }
  .servicos_container--card {
    grid-template-columns: 1fr;
  }
  .sobre__bg
  {
    padding-left: 5rem;
  }
  .sobre__container{
    display: none;
  }

  .sobre__containermobile
  {
    background-image: linear-gradient(
      to right,
      #44A08D,
      #093637
    );
    color: rgb(255, 255, 255);
  }
  .sobre__h2mobile{
    font-size: 4rem;
    text-align: center;
    align-items:center;
    flex-direction:column;
    color: #e2dada;
    padding-top:2rem;
    text-shadow: 8px 7px 11px #00000031;
  }
  .sobre__textmobile{
  color:rgba(255, 255, 255, 0.719);
  
  }
  .sobre__mvv p {
    color:rgba(255, 255, 255, 0.719);
  
    font-size:2rem;
    margin:2rem;
  }

.one,
.two,
.three{
  background-color: white;
  height: 5px;
  width: 100%;
  margin: 6px auto;
}
.menu-toogle{
  width: 40px;
  height: 30px;
  margin-right:20px;
  
}
/* fullscreen */
.menu-section.on{
  position: absolute;
  top:0;
  left:0;
  background-image:linear-gradient(
    to right,
    #44A08D,
    #093637
  ); ;
  width:100vw;
  height: 100vh;
  z-index: 100;
}
.menu-section.on nav{
  display: block;
}
}


