* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 60px 5%;
    overflow-x: hidden;
    background-color: #816440;
}

header {
    width: 380px;
    height: 300px;
}

.background img {
  display: flex;
  width: 500px;
  height: 500px;
  z-index: -1;
  position: relative;
  right: 40px;
  bottom: 70px;
}

.bar {
  width: 800px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.785);
  position: relative;
  bottom: 530px;
  right: 50px;
  z-index: 5;
}

.bar-bottom {
  width: 800px;
  height: 60px;
  background-color: #00000077;
  position: relative;
  bottom: 170px;
  right: 50px;
  z-index: 5;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.021), black)
}

/* ANIMAÇÃO HEADER */

.container {
    width: 350px;
    height: 0px;
    margin: auto;
    position: relative;
    bottom: 570px;
    z-index: 10;
  }
  
  .content {
    display: block;
    position: sticky;
    overflow: hidden;
    font-family: 'Lato', 'Lucida Sans', Arial, sans-serif;
    line-height: 40px;
    color: #2F2621;
  }
  
  .content__container {
    font-weight: 600;
    overflow: hidden;
    height: 40px;
    padding: 0;
    font-size: 20px;
    padding: 0 30px;
    margin: auto;
  }
  
  .content__container__text {
    display: inline;
    float: left;
    margin: 0;
    font-size: 25px;
    padding-left: 25px;
  }
  
  .content__container__list {
    margin-top: 0;
    padding-left: 100px;
    text-align: left;
    list-style: none;
    -webkit-animation-name: change;
    -webkit-animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-name: change;
    animation-duration: 10s;
    animation-iteration-count: infinite;
  }
  
  .content__container__list__item {
    line-height: 40px;
    margin: 0;
    color: #816440;
  }
  
  @keyframes opacity {
    0%, 100% {
      opacity: 0;
    }
  
    50% {
      opacity: 1;
    }
  }
  
  @keyframes change {
    0%, 12.66%, 100% {
      transform: translate3d(0, 0, 0);
    }
  
    16.66%, 29.32% {
      transform: translate3d(0, -25%, 0);
    }
  
    33.32%, 45.98% {
      transform: translate3d(0, -50%, 0);
    }
  
    49.98%, 62.64% {
      transform: translate3d(0, -75%, 0);
    }
  
    66.64%, 79.3% {
      transform: translate3d(0, -50%, 0);
    }
  
    83.3%, 95.96% {
      transform: translate3d(0, -25%, 0);
    }
  }
   

/* FIM DA ANIMAÇÃO */


/* MAIN */

.wrapper {
  display: inline-flex;
  list-style: none;
  height: 120px;
  width: 100%;
  padding-top: 40px;
  font-family: "Poppins", sans-serif;
  justify-content: center;
}

.wrapper .icon {
  position: relative;
  background: #2F2621;
  border-radius: 50%;
  margin: 10px;
  width: 60px;
  height: 60px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon svg {
  width: 45px;
  height: 45px;
  color: white;
}

.wrapper .tooltip {
  position: absolute;
  width: 120px;
  top: 0;
  right: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-align: center;
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .call:hover,
.wrapper .call:hover .tooltip,
.wrapper .call:hover .tooltip::before {
  background: #2F2621;
  color: #fff;
}

section.about {
  position: relative;
  top: 170px;
}

section h1 {
  padding: 6% 0;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-align: center;
}

section.about h2{
  padding: 20% 0 10%;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 20px;
}

section h3 {
  color: white;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  text-align: justify;
}

.contact-section {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Lato', sans-serif;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #333;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
  color: white;
  font-family: 'Lato', sans-serif;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2F2621;
  outline: none;
}

.contact-form button {
  padding: 0.9rem;
  background-color: #2F2621;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #21da00;
  color: #2F2621;
}


.maps {
  text-align: center;
  padding: 4px;
  background-color: rgba(0, 0, 0, 0.459);
  color: white;
  border-radius: 12px;
  position: relative;
  top: 300px;
}
.maps h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.loader {
  width: 34.8px;
  height: 34.8px;
  position: relative;
  transform: rotate(45deg);
  top: 25px;
  left: 30px;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 0 50%;
  background: #0000;
  background-image: radial-gradient(circle 11.2px at 50% 50%,#0000 94%, #ff4747);
}

.loader:after {
  animation: pulse-ytk0dhmd 1s infinite;
  transform: perspective(336px) translateZ(0px);
}

@keyframes pulse-ytk0dhmd {
  to {
    transform: perspective(336px) translateZ(168px);
    opacity: 0;
  }
}
  



/* FOOTER */

.footer {
  color: #f0f0f0;
  padding: 10px 20px 20px;
  font-family: 'Lato', sans-serif;
}

.footer-col {
  padding: 60px 3% 20px;
  color: white;
  text-align: justify;
}

.footer-col h3 {
  padding-bottom: 20px;
  text-align: center;
}


.footer-container {
  display: flex;
  padding-top: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  top: 450px;
  border-top: 1px solid #333;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid #333;
  padding-top: 15px;
}

.social {
  display: inline;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}

.social h3 {
  color: white;
  margin-bottom: 0;
}

.wrapper-social {
  display: inline-flex;
  list-style: none;
  height: 120px;
  width: 100%;
  padding-top: 40px;
  font-family: "Poppins", sans-serif;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  color: #2F2621;
  margin-top: 0;
}

.wrapper-social .icon {
  position: relative;
  background: #fff;
  border-radius: 50%;
  margin: 5px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-social .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-social .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-social .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper-social .icon:hover span,
.wrapper-social .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper-social .whats:hover,
.wrapper-social .whats:hover .tooltip,
.wrapper-social .whats:hover .tooltip::before {
  background: #21da00;
  color: #fff;
}

.wrapper-social .insta:hover,
.wrapper-social .insta:hover .tooltip,
.wrapper-social .insta:hover .tooltip::before {
  background: #e4405f;
  color: #fff;
}

.wrapper-social .mail:hover,
.wrapper-social .mail:hover .tooltip,
.wrapper-social .mail:hover .tooltip::before {
  background: #2F2621;
  color: #fff;
}

.cta {
  position: fixed;
  left: 79%;
  top: 81%;
  display: flex;
  z-index: 999;
}

.back-image svg {
  width: 450px;
  height: 450px;
  position: relative;
  bottom: 30px;
  right: 50px;
  opacity: 0.3;
  display: block;
  z-index: -2;
}


/* RESPONSIVIDADE */

@media screen and (min-width: 1070px) {
  header {
    width: 1000px;
    height: 900px;
}

.background img {
  display: flex;
  width: 1600px;
  height: 800px;
  z-index: -1;
  position: relative;
  right: 100px;
  bottom: 320px;
}

.container {
    width: 350px;
    height: 0px;
    margin: auto;
    position: relative;
    bottom: 880px;
    left: 180px;
    z-index: 10;
  }

.bar {
  width: 1700px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.785);
  position: relative;
  bottom: 840px;
  right: 80px;
  z-index: 5;
}

}