@charset "UTF-8";
nav {
  background-color: #bbbbbb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  max-height: 90px;
  padding: 0 50px;
}
nav img {
  width: 150px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  padding: 0 70px;
}
nav li a {
  text-decoration: none;
  color: #000;
}
nav li a:hover {
  color: #c07205;
  transition: 0.2s;
}

.menu-toggle {
  display: none;
}

@media screen and (max-width: 768px) {
  nav {
    flex-direction: row-reverse;
    padding: 0 50px 0 50px;
    max-height: 200px;
  }
  .menu-toggle {
    display: block;
    cursor: pointer;
    margin-right: 10px;
  }
  .menu {
    display: none;
    position: absolute;
    top: 100px;
    background-color: #fff;
    width: 100%;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .menu img {
    width: 100px;
  }
  .menu ul {
    padding: 0;
    flex-direction: column;
    gap: 10px;
  }
  .menu li {
    text-align: center;
  }
  .menu {
    display: none;
    position: absolute;
    background-color: #bbbbbb;
    width: 200px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
  }
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .menu.active {
    display: flex;
  }
  .menu-toggle {
    font-size: 40px;
    color: #F89C1D;
  }
  .menu-toggle:hover {
    opacity: 1;
    transition: all 0.3s ease;
    color: #c07205;
  }
}
.menu-toggle.active + .menu {
  display: flex;
}

.footer-container {
  background-color: #bbbbbb;
  color: #000;
  font-size: 1.2em;
  border-top: 3px solid #F89C1D;
  display: flex;
  justify-content: center;
}

.footer-content {
  gap: 50px;
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.footer-contact {
  width: 700px;
  padding-right: 50px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding-top: 30px;
  text-align: left;
}
.footer-contact h1 {
  font-size: 1.5rem;
  padding: 5px 0;
  margin: 0;
  text-align: center;
}
.footer-contact a {
  text-decoration: none;
  color: #000;
  display: flex;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 0;
}
.footer-contact a i {
  margin-right: 10px;
  color: #F89C1D;
}
.footer-contact a p {
  display: flex;
  font-size: 1.2rem;
  padding: 5px 0;
  margin: 0;
  margin-left: 6px;
  flex-direction: row;
  align-items: center;
  text-align: left;
}
.footer-contact a p:hover {
  color: #F89C1D;
  transition: 0.1s;
}

.footer-copy {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #bbbbbb;
}
.footer-copy p {
  text-align: center;
  font-size: 1.2rem;
  padding-top: 10px;
}
.footer-copy img {
  width: 150px;
  padding: 0%;
  border-bottom: 2px solid #F89C1D;
}

.site-map {
  width: 200px;
  padding-top: 30px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
}
.site-map ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  text-align: left;
}
.site-map ul li {
  font-size: 1.2rem;
  padding: 5px 0;
}
.site-map ul li a {
  text-decoration: none;
  color: #000;
}
.site-map ul li a:hover {
  color: #F89C1D;
  /* Corrija a referência à variável $orange */
  transition: 0.1s;
}

.footer-description {
  padding-right: 50px;
  display: flex;
  justify-content: flex;
  flex-direction: column;
  padding-top: 30px;
  width: 300px;
}
.footer-description h1 {
  font-size: 1.5rem;
  padding: 5px 0;
  margin: 0;
  text-align: center;
}
.footer-description p {
  font-size: 1.2rem;
  padding: 5px 0;
  margin: 0;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .footer-contact {
    width: 500px;
  }
  .footer-description {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    display: flex;
    justify-content: center;
  }
  .site-map {
    width: 100%;
    padding-top: 30px;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
  }
  .site-map ul {
    padding-left: 50px;
  }
  .footer-contact {
    width: 400px;
    padding-right: 0;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex;
  }
  .footer-contact h1 {
    text-align: center;
  }
  .footer-contact a {
    padding-left: 20px;
  }
  .footer-description {
    justify-content: center;
  }
  .footer-description p {
    text-align: center;
  }
}
/* Se a importação estiver correta e funcionando */
body {
  background-color: #f9f9f9;
}

/* Estilos globais */
* {
  box-sizing: border-box;
}

/* Estilos principais */
/* Defina o fundo padrão */
main {
  background: url(../assets/img/bg-main.webp) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: background ease 0.5s;
}

/* Animação para a entrada quando o mouse está sobre o elemento */
main:hover {
  background: url(../assets/img/bgmain-light.webp) no-repeat center center;
  background-size: cover;
}

/* Animação para a saída quando o mouse não está sobre o elemento */
main:not(:hover) {
  background: url(../assets/img/bg-main.webp) no-repeat center center;
  background-size: cover;
}

#main-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 80vh;
  color: #fff;
  text-align: center;
  font-size: 2rem;
}

#main-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

#main-content p {
  font-size: 30px;
  margin-bottom: 20px;
  max-width: 1077px;
}

#main-content a {
  padding: 20px 50px;
  background-color: #F89C1D;
  /* Se a variável estiver definida */
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.8rem;
  transition: background-color 0.5s;
}

#main-content a:hover {
  background-color: #c07205;
  /* Se a variável estiver definida */
}

#about {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
  background-color: #f9f9f9;
}

#about h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  max-width: 950px;
  text-align: center;
}

#about h1 {
  font-size: 2rem;
  color: #F89C1D;
  text-align: start;
}

#about p {
  margin-right: 0;
  max-width: 950px;
  width: 80%;
  text-align: start;
  font-size: 1.5rem;
}

.about-container {
  padding: 2rem 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.about-container h1 {
  text-align: center;
  padding-bottom: 1.5rem;
  font-size: 40px;
  color: #F89C1D;
  /* Se a variável estiver definida */
  -webkit-text-decoration: underline #000;
          text-decoration: underline #000;
}

/* Mídia Queries para responsividade */
@media screen and (max-width: 1280px), (max-width: 1024px) {
  #main-content h1 {
    font-size: 2.5rem;
  }
  #main-content p,
  #about h2,
  #about p,
  .about-container h1 {
    font-size: 1.2rem;
  }
  #main-content p,
  #about p {
    max-width: 950px;
  }
  #main-content a {
    padding: 15px 30px;
    font-size: 1.5rem;
  }
  #about {
    padding: 10px 0;
  }
  #about h2 {
    display: none;
  }
  #about h1 {
    font-size: 2rem;
  }
  #about p {
    margin-bottom: 5px;
  }
  .about-container h1 {
    padding-bottom: 20px;
  }
}
.video-carousel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 20px;
}

.video-slide {
  display: none;
  width: 200px;
  transition: transform 0.5s ease-in-out;
}

.video-slide video {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

video {
  width: 100%;
  height: auto;
}

.carousel-btn {
  color: #F89C1D;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}
.carousel-btn:hover {
  color: #c07205;
  transition: all ease 0.5s;
}

.prev {
  left: -35px;
}

.next {
  right: -35px;
}

@media screen and (max-width: 768px) {
  .about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 30px;
  }
  .about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
  .about-content p {
    padding-left: 8px;
    border-left: #F89C1D 2px solid;
  }
}
.services {
  background-color: #f9f9f9;
  padding: 50px;
  position: relative;
  /* Adicionado para posicionar as setas corretamente */
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.services h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  max-width: 33.333%;
  flex: 0 0 auto;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.card-slide img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
  border-bottom: 4px solid #F89C1D;
}
.card-slide h2 {
  margin-top: 17px;
  font-size: 24px;
}
.card-slide p {
  margin-top: 10px;
  font-size: 20px;
}

.prev-btn,
.next-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 30px;
  padding: 14px;
  color: #F89C1D;
  position: absolute;
  /* Alterado para posicionamento absoluto */
  top: 50%;
  /* Posicionamento vertical */
  transform: translateY(-50%);
}

.prev-btn:hover,
.next-btn:hover {
  transition: all 0.3s ease;
  color: black;
}

.prev-btn {
  left: 10px;
  /* Posicionamento à esquerda */
}

.next-btn {
  right: 10px;
  /* Posicionamento à direita */
}

@media screen and (min-width: 1280px) {
  .slide {
    max-width: 33.333%;
  }
}
@media screen and (max-width: 1024px) {
  .slide {
    max-width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .slide {
    max-width: 100%;
  }
}
.highlights {
  padding: 0 20px;
  background-color: #f9f9f9;
  text-align: center;
  padding-bottom: 40px;
}

.highlights h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.highlights-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.highlight {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.highlight .highlight-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.highlight .highlight-content i {
  color: #F89C1D;
}
.highlight .highlight-content h2 {
  font-size: 24px;
  margin-top: 17px;
}
.highlight .highlight-content p {
  font-size: 20px;
  margin-top: 10px;
}

.aside-content-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}
.aside-content-left img {
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.aside-content-left img:hover {
  transform: scale(1.05);
  transition: all 0.5s ease-in-out;
}
.aside-content-left a {
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 70px;
  background-color: #F89C1D;
  color: #f9f9f9;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.5s;
}
.aside-content-left a:hover {
  background-color: #c07205;
}
.aside-content-left a a {
  text-decoration: none;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .highlight {
    flex-direction: column;
  }
  .highlights-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }
}
#landscaping {
  background-color: #f5f5f5;
  padding: 30px 20px;
  height: 60vh;
  display: flex;
  justify-content: center;
}

.landscaping-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 90px;
}

.text-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  max-width: 600px;
}

.text-box h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.text-box p {
  font-size: 1.3rem;
}

.content-aside-right img {
  max-height: 300px;
  max-width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 7px;
  transition: transform 0.5s ease;
}

.content-aside-right img:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 1280px), (max-width: 1024px) {
  .content-aside-right img {
    flex-direction: column;
    gap: 30px;
  }
  .content-aside-right img img {
    width: 300px;
    max-width: 450px;
    max-height: 350px;
  }
}
@media screen and (max-width: 1024px) {
  .landscaping-container {
    gap: 20px;
  }
}
@media screen and (max-width: 868px) {
  #landscaping {
    height: auto;
  }
  .landscaping-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
  .text-box {
    padding: 10px;
    text-align: center;
  }
  .text-box h2 {
    font-size: 2rem;
  }
  .text-box p {
    font-size: 1rem;
  }
}
.contact-section {
  border-top: solid 3px #F89C1D;
  background-color: #ececec;
  padding: 50px 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8rem;
}
.contact-section h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.contact-forms {
  padding: 10px;
  background-color: #c6c6c6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.contact-forms:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  background-color: #bfbfbf;
}
.contact-forms input {
  padding: 10px;
  border-radius: 5px;
  border: none;
  margin-bottom: 20px;
  width: 300px;
  font-family: "Lato", sans-serif;
}
.contact-forms input:focus {
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  outline: none;
}
.contact-forms input:hover {
  font-family: "Lato", sans-serif;
  background-color: #f9f9f9;
}
.contact-forms input:focus {
  background-color: #f9f9f9;
}
.contact-forms input:active {
  background-color: #f9f9f9;
}
.contact-forms input::-moz-placeholder {
  font-size: 1rem;
  font-family: "Lato", sans-serif;
}
.contact-forms input::placeholder {
  font-size: 1rem;
  font-family: "Lato", sans-serif;
}
.contact-forms input:not(:focus) {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
}
.contact-forms .submit-btn {
  padding: 10px 10px;
  border-radius: 5px;
  width: 180px;
  border: none;
  background-color: #F89C1D;
  color: #fff;
  font-size: 1.3rem;
  font-family: "Lato", sans-serif;
  cursor: pointer;
  transition: background-color 0.5s;
}
.contact-forms .submit-btn:hover {
  background-color: #c07205;
}
.contact-forms textarea {
  padding: 10px;
  border-radius: 5px;
  border: none;
  margin-bottom: 20px;
  width: 300px;
  font-family: "Lato", sans-serif;
}
.contact-forms textarea:hover {
  background-color: #f9f9f9;
}
.contact-forms textarea:focus {
  font-size: 1rem;
  outline: none;
  font-family: "Lato" sans-serif;
  background-color: #f9f9f9;
}
.contact-forms textarea:active {
  font-family: "Lato" sans-serif;
  background-color: #f9f9f9;
}
.contact-forms textarea::-moz-placeholder {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
}
.contact-forms textarea::placeholder {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
}
.contact-forms textarea:not(:focus) {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
}

.work-with-us-aside {
  align-items: center;
  align-self: start;
  text-align: center;
}
.work-with-us-aside h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.work-with-us-aside p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  max-width: 600px;
}
.work-with-us-aside a {
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #f89c1d;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.3rem;
  transition: background-color 0.5s;
}
.work-with-us-aside a:hover {
  background-color: #c07205;
}
.work-with-us-aside a i {
  margin-right: 10px;
}

@media screen and (max-width: 1024px) {
  .contact-section {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .contact-section {
    gap: 10rem;
    flex-direction: column;
  }
  .contact-forms {
    width: 100%;
    gap: 10px;
  }
  .contact-forms input {
    width: 100%;
  }
  .contact-forms textarea {
    width: 100%;
  }
  .work-with-us-aside {
    border-top: solid 3px #F89C1D;
    padding: 50px 0;
    align-self: center;
    width: 400px;
  }
  .work-with-us-aside h2 {
    font-size: 1.8rem;
  }
  .work-with-us-aside p {
    padding-bottom: 10px;
  }
}
.btn-whatsapp {
  position: fixed;
  bottom: 14px;
  right: 24px;
  z-index: 3;
}
.btn-whatsapp img {
  max-width: 70px;
  transition: transform 0.4s;
}
.btn-whatsapp img:hover {
  transform: scale(1.1);
}

.btn-whatsapp-text {
  visibility: hidden;
  position: absolute;
  width: 120px;
  top: 12px;
  left: -130px;
  padding: 4px;
  text-align: center;
  border-radius: 8px;
  background-color: #F89C1D;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover .btn-whatsapp-text {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .btn-whatsapp img {
    max-width: 64px;
  }
}
.anchor {
  scroll-margin-top: 2rem;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
}

html {
  scroll-behavior: smooth;
}/*# sourceMappingURL=style.css.map */