/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* CONTAINER PADRÃO */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  width: 100px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: #333;
  font-weight: 500;
}

.btn.fale-conosco {
  background: #47b656;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
}

/* HERO */
.hero {
  position: relative;
  background: url('../img/banner.avif') center/cover no-repeat;
  padding: 150px 0;
  color: white;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 80, 0, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero h2 span {
  color: #ffcc00;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 30px;
}

.benefits {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.benefit {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 5px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}

.buttons .btn {
  padding: 12px 20px;
  margin-right: 10px;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
}

.btn.yellow {
  background-color: #ffcc00;
  color: #000;
}

.btn.green {
  background-color: #00c166;
  color: #fff;
}

/* CAIXA LIVRE DE PRAGAS */
.free-of-pests {
  position: absolute;
  right: 30px;
  bottom: 30px;
  background: rgba(0, 128, 0, 0.8);
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  z-index: 2;
}

.free-of-pests h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.free-of-pests .icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.free-of-pests p {
  font-size: 14px;
  line-height: 1.4;
}

.free-of-pests .icons {
  font-size: 20px;
  margin-top: 10px;
}

/* SERVIÇOS */
.servicos {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.servicos-header .icon-wrapper {
  background-color: #3cb371;
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servicos-header .icon-bug {
  font-size: 24px;
  color: #fff;
}

.servicos-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.servicos-header p {
  font-size: 16px;
  color: #666;
}

/* CARDS */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card-img {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
}

.card-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ffcc00;
  padding: 8px;
  border-radius: 50%;
  font-size: 18px;
}

.card-content {
  padding: 20px;
  text-align: left;
}

.card-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.card-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.card-content a {
  color: #2e8b57;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}

.card-content a:hover {
  text-decoration: underline;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .benefits {
    flex-direction: column;
    gap: 10px;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .free-of-pests {
    position: static;
    width: 100%;
    margin-top: 30px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }
}
/* CHAMADA PARA AÇÃO - CTA */
.cta-box {
  background: linear-gradient(to right, #e6f6e6, #d2efd2);
  border-radius: 20px;
  padding: 40px 20px;
  margin-top: 60px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cta-box h2 {
  font-size: 24px;
  color: #222;
  margin-bottom: 15px;
}

.cta-box p {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  background-color: #34a853;
  color: #fff;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  transition: background 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
  background-color: #2e9647;
}
.porque-escolher {
  background-color: #f2fdf5;
  padding: 60px 20px;
}

.porque-escolher .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.escolher-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}

.text-content {
  flex: 1 1 480px;
}

.image-content {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.badge {
  display: inline-block;
  background-color: #34a853;
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 15px;
}

.text-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #1c1c1c;
}

.text-content h2 span {
  color: #34a853;
}

.text-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.feature {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature .icon {
  font-size: 24px;
  margin-bottom: 10px;
  display: inline-block;
}

.feature h4 {
  margin: 0 0 8px;
  color: #222;
}

.feature p {
  font-size: 14px;
  color: #555;
}

.feature.green .icon { color: #34a853; }
.feature.teal .icon { color: #0cbaba; }
.feature.yellow .icon { color: #fbbc04; }
.feature.red .icon { color: #ea4335; }

.números {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.números div {
  text-align: center;
}

.números strong {
  font-size: 28px;
  color: #222;
}

.números span {
  display: block;
  font-size: 14px;
  color: #666;
}

.botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}

.btn.green {
  background-color: #34a853;
  color: white;
}

.btn.outline-green {
  border: 2px solid #34a853;
  color: #34a853;
  background: transparent;
}

.main-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.overlay-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.5);
  padding: 10px;
  border-radius: 8px;
  color: white;
}

.extra-infos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.info-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-box .icon {
  font-size: 20px;
  margin-bottom: 8px;
  display: inline-block;
}

.depoimento {
  background: #34a853;
  padding: 20px;
  border-radius: 10px;
  color: white;
  font-size: 16px;
}

.depoimento blockquote {
  margin: 0 0 10px;
  font-style: italic;
}

.depoimento cite {
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .escolher-content {
    flex-direction: column;
  }

  .botoes {
    flex-direction: column;
    align-items: flex-start;
  }

  .números {
    flex-direction: column;
    gap: 10px;
  }

  .extra-infos {
    flex-direction: column;
  }
}
.contato {
  background: linear-gradient(to bottom, #2e7d32, #388e3c);
  padding: 60px 20px;
  color: white;
}

.contato .container {
  max-width: 1200px;
  margin: auto;
}

.contato-topo {
  text-align: center;
  margin-bottom: 40px;
}

.contato-topo .icon-top {
  font-size: 36px;
  display: inline-block;
  margin-bottom: 10px;
}

.contato-topo h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.contato-topo p {
  font-size: 16px;
  color: #e0e0e0;
}

.contato-conteudo {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contato-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-box .icon {
  font-size: 24px;
}

.info-box h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.info-box p {
  margin: 5px 0 0;
  font-size: 14px;
}

.info-box.red {
  background: linear-gradient(to right, #f44336, #e53935);
}

.btn.small.danger {
  background: white;
  color: #e53935;
  font-weight: bold;
  padding: 6px 12px;
  display: inline-block;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 14px;
  text-decoration: none;
}

.contato-form {
  flex: 1.2;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
}

.contato-form h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: white;
}

.contato-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contato-form input,
.contato-form select,
.contato-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  background: rgba(255,255,255,0.15);
  color: white;
}

.contato-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder,
.contato-form select {
  color: #eee;
}

.form-botoes {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn.yellow {
  background-color: #fbbc04;
  color: #333;
}

.btn.green {
  background-color: #34a853;
  color: white;
}

.atendemos {
  margin-top: 60px;
  text-align: center;
}

.atendemos h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.bairros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.bairros span {
  background-color: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .contato-conteudo {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .form-botoes {
    flex-direction: column;
  }
}
.footer {
  background-color: #2e7d32;
  color: white;
  padding: 60px 20px 30px;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer ul li a {
  color: white;
  text-decoration: none;
}

.footer ul li a:hover {
  text-decoration: underline;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
}

.contato-info li {
  margin-bottom: 8px;
}

.emergencia-box {
  background: linear-gradient(to right, #f44336, #e53935);
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
}

.emergencia-box h5 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: bold;
}

.emergencia-box p {
  margin: 0 0 10px;
  font-size: 14px;
}

.btn.small.danger {
  background-color: white;
  color: #e53935;
  font-weight: bold;
  padding: 6px 12px;
  display: inline-block;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #ddd;
}

.certificacoes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}
/* Estilo base */
.hamburguer {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-mobile {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-mobile nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.fale-conosco {
  background-color: #2ecc71;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

/* Responsivo */
@media (max-width: 768px) {
  .hamburguer {
    display: block;
  }

  .menu-mobile {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .menu-mobile.active {
    display: flex;
  }

  .menu-mobile nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .fale-conosco {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .hamburguer,
  .menu-mobile {
    display: none !important;
  }
}
