@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");

:root {
  --green: #008080;
  --black: #333;
  --light-color: #999;
  --text-shadow: 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.2);
  --border: 0.2rem solid var(--green);
}

.footer {
  background: #f8f9fa;
  color: #333;
  padding: 4rem 2rem 2rem;
  font-family: "Segoe UI", sans-serif;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-box {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-box h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2b7a78;
}

.footer-box p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #444;
}

.footer-box strong {
  color: #111;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #2b7a78;
  font-size: 1.6rem;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #000;
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

/* Certificados */
.certificados {
  text-align: center;
  margin-top: 3rem;
}

.certificados h4 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #2b7a78;
}

.certificados-img img {
  height: 50px;
  margin: 0 10px;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 2rem;
  margin-top: 3rem;
  font-size: 1.4rem;
  color: #666;
}

.footer-bottom span {
  color: #2b7a78;
  font-weight: bold;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-box {
    padding-bottom: 2rem;
  }

  .social-icons a {
    font-size: 2rem;
    margin: 0 0.8rem;
  }

  .certificados-img img {
    margin: 10px;
    height: 45px;
  }
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.2s ease-in;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

section {
  padding: 2rem 9%;
}

section:nth-child(even) {
  background: #f0f0f0;
}

.heading {
  text-align: center;
  padding-bottom: 2rem;
  text-shadow: var(--text-shadow);
  text-transform: uppercase;
  color: var(--black);
  font-size: 4rem;
  letter-spacing: 0.4rem;
}

/* Botão animado */

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem;
  padding-left: 1rem;
  border: var(--border);
  border-radius: 0.5rem;
  color: var(--green);
  box-shadow: var(--box-shadow);
  cursor: pointer;
  font-size: 1.7rem;
}

.btn span {
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  background: var(--green);
  color: #fff;
  margin-left: 0.5rem;
}

.btn:hover {
  background: var(--green);
  color: #fff;
}

.btn:hover span {
  background: #fff;
  color: var(--green);
  margin-left: 1rem;
}

.btnwpp {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem;
  padding-left: 1rem;
  border: var(--border);
  border-radius: 0.5rem;
  color: var(--green);

  cursor: pointer;
  font-size: 1.7rem;
}

.btnwpp span {
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  background: var(--green);
  color: #fff;
  margin-left: 0.5rem;
}

.btnwpp:hover {
  background: var(--green);
  color: #fff;
}

.btnwpp:hover span {
  background: #fff;
  color: var(--green);
  margin-left: 1rem;
}
.header {
  padding: 1rem 5%; /* REDUZIU de 2rem para 1rem */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  box-shadow: var(--box-shadow);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px; /* Limita a altura */
}

.header .logo {
  width: 160px; /* REDUZIU de 200px para 160px */
}

.header .navbar a {
  font-size: 1.7rem;
  color: var(--black);
  margin-left: 2rem;
}

.header .navbar a:hover {
  color: var(--green);
}

.home {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 10rem;
}

.home .image {
  flex: 1 1 45rem;
}

.home .image img {
  width: 100%;
  flex: 1 1 45rem;
}

.home .content {
  flex: 1 1 45rem;
}

.home .content h3 {
  font-size: 4.5rem;
  color: var(--black);
  line-height: 1.5;
  text-shadow: var(--text-shadow);
}

.home .content p {
  font-size: 1.7rem;
  color: var(--light-color);
  line-height: 1.8;
  padding: 1rem 0;
}

.icons-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.icons-container .icons {
  text-align: center;
  padding: 2.5rem;
}

.icons-container .icons i {
  font-size: 4.5rem;
  color: var(--green);
}

.icons-container .icons h3 {
  font-size: 4.5rem;
  color: var(--black);
  padding: 0.5rem 0;
  text-shadow: var(--text-shadow);
}

.icons-container .icons p {
  font-size: 1.7rem;
  color: var(--light-color);
}

/* Estilo principal da seção de serviços */
.services {
  text-align: center;
  padding: 80px 5%;
  background: linear-gradient(135deg, #f9f9f9, #e3e3e3);
}

.services .heading {
  margin-bottom: 40px;
  color: #222;
}

.services .heading span {
  color: #008f39;
}

/* Grid responsivo */
.box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Estilo dos boxes de serviço */
.box-container div {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.box-container div i {
  font-size: 3rem;
  color: #008f39;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.box-container div h3 {
  font-size: 1.5rem;
  color: black;
  margin-bottom: 1rem;
  font-weight: 700;
}

.box-container div p {
  font-size: 1rem;
  color: #666;
  display: none; /* Ocultar a descrição */
  font-weight: 700;
}

/* Estilizando o botão Saiba Mais */
.box-container div .saiba-mais {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #008f39;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.box-container div .saiba-mais:hover {
  background: #ff6600;
}

/* Efeito hover interativo */
.box-container div:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.box-container div:hover i {
  color: #ff6600;
}

/* Adicionando um efeito sutil de brilho */
.box-container div::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 10%,
    transparent 70%
  );
  transition: 0.5s;
}

.box-container div:hover::before {
  top: 0;
  left: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .services .heading {
    font-size: 2rem;
  }
  .box-container {
    grid-template-columns: 1fr;
  }
}

/* Ajustando imagens de fundo */
.services .box-container .boxrocagem {
  background: url("https://locacaoequipamentosmanaus.com.br/wp-content/uploads/2023/09/aluguel-cortador-de-grama-768x512.webp")
    center/cover no-repeat;
}

.services .box-container .boxpintura {
  background: url("https://www.gjpinturas.com.br/wp-content/uploads/2022/08/plano-pintura.jpg")
    center/cover no-repeat;
}

.services .box-container .boxreforma {
  background: url("https://www.mimura.com.br/wp-content/uploads/2018/06/reformas-residenciais.jpg")
    center/cover no-repeat;
}

.services .box-container .boxjardinagem {
  background: url("https://cptstatic.s3.amazonaws.com/imagens/enviadas/materias/materia27589/antes-de-entrar-para-o-ramo-da-jardinagem-responda-cpt.jpg")
    center/cover no-repeat;
}

.services .box-container .boxdiversos {
  background: url("https://degraus.com.br/wp-content/uploads/2021/02/limpeza-p%C3%B3s-obra.jpg")
    center/cover no-repeat;
}

.contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact .row .image {
  flex: 1 1 45rem;
}

.contact .row .image img {
  width: 100%;
}

.contact .row form {
  flex: 1 1 45rem;
  border: var(--border);
  box-shadow: var(--box-shadow);
  text-align: center;
  padding: 2rem;
  border-radius: 0.5rem;
}

.contact .row form h3 {
  color: var(--black);
  padding-bottom: 1rem;
  font-size: 3rem;
}

.contact .row form .box {
  width: 100%;
  margin: 0.7rem 0;
  border-radius: 0.5rem;
  border: var(--border);
  font-size: 1.6rem;
  color: var(--black);
  text-transform: none;
  padding: 1rem;
}

.contact .row form .btn {
  padding: 1rem 4rem;
}

/* Responsividade */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  .header {
    padding: 2rem;
  }

  section {
    padding: 2rem;
  }
}
/* Responsive */
@media (max-width: 768px) {
  #menu-btn {
    display: block;
  }

  #menu-btn {
    display: block;
    font-size: 2.5rem;
    border-radius: 0.5rem;
    background: #ddd6d6;
    color: var(--green);
    padding: 1rem 1.5rem;
    cursor: pointer;
    z-index: 9999;
    margin: 0 auto;
  }

  .header .navbar {
    position: fixed;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 80%;
    max-width: 300px;
    padding: 2rem 1rem;
    border-radius: 1rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: none; /* escondido por padrão */
    z-index: 9998;
    text-align: center;
    flex-direction: column;
    gap: 1.5rem;
  }

  .home {
    flex-direction: column;
  }

  .contact .row {
    flex-direction: column;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  display: inline-block;
  font-size: 1.8rem;
  margin-right: 10px;
  color: white;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #ffeb3b;
  transform: scale(1.1);
}

.map-container {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-container {
  height: 180px;
}

/* about section */

.about {
  background-color: white;
}

.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.about .row .image {
  flex: 1 1 45rem;
}

.about .row .image img {
  width: 100%;
}

.about .row .content {
  flex: 1 1 45rem;
}

.about .row .content h3 {
  color: var(--black);
  text-shadow: var(--text-shadow);
  font-size: 4rem;
  line-height: 1.8;
}

.about .row .content p {
  color: var(--light-color);
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 1rem 0;
}
.orcamento {
  padding: 4rem 10%;
  background: #f0f4f8;
  text-align: center;
}

.orcamento .heading {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #333;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.input-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: 0.2s;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: #4caf50;
  outline: none;
}

.botao-enviar {
  background: #4caf50;
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 0.7rem;
  cursor: pointer;
  transition: background 0.3s;
}

.botao-enviar:hover {
  background: #43a047;
}
#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  border-radius: 50%;
  padding: 10px;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

#whatsapp-button img {
  width: 50px;
  height: 50px;
}

#whatsapp-button:hover {
  transform: scale(1.1);
}
#depoimentos {
  padding: 60px 20px;
  background-color: #f1f1f1;
  text-align: center;
}

#depoimentos h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #333;
}

.depoimentos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.depoimento {
  background-color: white;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  text-align: left;
}

.perfil {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.perfil img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
}

.perfil h4 {
  margin: 0;
  font-size: 1.1em;
  color: #222;
}

.perfil .data {
  font-size: 0.85em;
  color: #777;
}

.estrelas {
  color: #fbc02d;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.depoimento p {
  color: #444;
  font-size: 0.95em;
}
#contato {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

#contato h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}

.contato-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.info-contato {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.info-contato p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 15px;
}

.info-contato i {
  margin-right: 10px;
  color: #28a745;
}

.form-contato {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-contato input,
.form-contato textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  width: 100%;
}

.form-contato button {
  padding: 12px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.form-contato button:hover {
  background-color: #218838;
}
.equipe {
  padding: 5rem 2rem;
  background: #f4f4f4;
  text-align: center;
}

.container-equipe {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.card-equipe {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 250px;
  transition: transform 0.3s ease;
}

.card-equipe:hover {
  transform: scale(1.05);
}

.card-equipe img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.card-equipe h3 {
  margin: 0.5rem 0;
  font-size: 1.3rem;
  color: #333;
}

.card-equipe p {
  font-size: 0.95rem;
  color: #666;
}
/* Responsivo para telas até 768px */
@media (max-width: 768px) {
  html {
    font-size: 50%;
  }

  .header {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  .header .logo {
    width: 120px;
    margin-bottom: 1rem;
  }

  .home {
    flex-direction: column;
    text-align: center;
  }

  .icons-container {
    grid-template-columns: 1fr;
  }

  .box-container {
    grid-template-columns: 1fr;
  }

  .contact .row {
    flex-direction: column;
  }

  /* Responsivo para telas até 480px */
  @media (max-width: 480px) {
    .heading {
      font-size: 2.8rem;
      letter-spacing: 0.2rem;
    }

    .btn,
    .btnwpp {
      font-size: 1.4rem;
      padding: 0.5rem;
    }

    .btn span,
    .btnwpp span {
      padding: 0.5rem 0.8rem;
      font-size: 1.3rem;
    }

    .box-container div h3 {
      font-size: 1.4rem;
    }

    .box-container div .saiba-mais {
      padding: 6px 10px;
      font-size: 1.3rem;
    }
  }
}
