
/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f6f7f6;
  color: #222;
  line-height: 1.5;
  padding-top: 50px;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #1f3d2b;
  z-index: 9999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.logo img {
  height: 26px;
}

/* ================= MENU ================= */
#menu {
  display: flex;
  gap: 22px;
}

#menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

#menu .btn-menu {
  background: #3a8f3a;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  background: url("img/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 20px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 14px;
}

.hero p {
  font-size: 16px;
  margin-bottom: 18px;
}
/* Ajuste fino: encostar o hero no menu */
.hero {
  margin-top: -8px;
}


.hero h1,
.hero h2,
.hero p {
  color:#fff !important;
  opacity: 1 !important;
  filter: none !important;
  position: relative;
  z-index: 2;
}

.btn {
  background: #3a8f3a;
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

/* ================= SEÇÕES ================= */
section {
  padding: 50px 20px;
  text-align: center;
}

section h2 {
  font-size: 26px;
  margin-bottom: 25px;
}

/* ================= COMO FUNCIONA ================= */
.como-funciona {
  max-width: 900px;
  margin: auto;
}

.como-item {
  margin-bottom: 30px;
}



/* ================= SERVIÇOS ================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.card img {
  width: 70px;
  margin-bottom: 12px;
}

/* ================= TRUST CARD ================= */
.trust-card {
  max-width: 520px;
  margin: 30px auto;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  text-align: center;
}

.trust-icon {
  font-size: 36px;
  color: #3a8f3a;
  margin-bottom: 10px;
}





/* ================= FORM FAKE ================= */
.form-section {
  background: #fff;
}

.form-visual {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-visual input {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* ================= DIVISOR ================= */
.divisor {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.divisor span {
  width: 60px;
  height: 4px;
  background: #3a8f3a;
  border-radius: 4px;
}

/* ================= DEPOIMENTOS ================= */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.depoimento-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.depoimento-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.estrelas {
  color: gold;
  font-size: 18px;
  margin-bottom: 10px;
}

/* ================= JARDINEIRO ================= */
.jardineiro {
  background: #eef5ee;
}

/* ================= FOOTER ================= */
footer {
  background: #1f3d2b;
  color: #fff;
  padding: 40px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

footer a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.copy {
  text-align: center;
  margin-top: 20px;
  opacity: .8;
}

.footer-sitemap {
  text-align: center;
  margin-top: 10px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  #menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1f3d2b;
    flex-direction: column;
    padding: 20px;
  }

  #menu.active {
    display: flex;
  }

  .hero h1 {
    font-size: 26px;
  }
}

/* ===== AJUSTE COMO FUNCIONA (DESKTOP) ===== */

.como-funciona {
  background: #f6f7f6;
}

.como-funciona h2 {
  margin-bottom: 40px;
}

.como-funciona {
  max-width: 1000px;
  margin: auto;
}

.como-item {
  max-width: 700px;
  margin: 0 auto 30px auto;
  padding: 20px 30px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.como-item h3 {
  margin-bottom: 10px;
  color: #1f3d2b;
}

.como-item p {
  color: #444;
  line-height: 1.6;
}

/* ================= TIPOGRAFIA GLOBAL ================= */

/* TÍTULOS PRINCIPAIS */
h1 {
  font-size: 34px;
  line-height: 1.25;
}

h2 {
  font-size: 28px;
  line-height: 1.3;
}

h3 {
  font-size: 20px;
  line-height: 1.4;
}

h4 {
  font-size: 18px;
}

/* TEXTOS */
p {
  font-size: 15px;
  line-height: 1.6;
}

/* MENU */
#menu a {
  font-size: 15px;
  font-weight: 500;
}

/* BOTÕES */
.btn,
.btn-menu {
  font-size: 15px;
}

/* HERO */
.hero h1 {
  font-size: 36px;
}

.hero p {
  font-size: 16px;
}

/* COMO FUNCIONA */
.como-item h3 {
  font-size: 19px;
}

.como-item p {
  font-size: 17px;
}

/* SERVIÇOS */
.card h3 {
  font-size: 16px;
}

/* FORMULÁRIO FAKE */
.form-visual input {
  font-size: 14px;
}

/* DEPOIMENTOS */
.depoimento-card p {
  font-size: 15px;
}

.depoimento-card span {
  font-size: 15px;
}

/* FOOTER */
footer {
  font-size: 14px;
}

footer strong {
  font-size: 15px;
}

footer a {
  font-size: 14px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 15px;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0;
}

/* BOTÃO PRINCIPAL – CLIENTE */
.btn-cliente {
  background: #3a8f3a;
  color: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  text-decoration: none;
}

.btn-cliente span {
  display: block;
  font-size: 13px;
  font-weight: normal;
  opacity: 0.9;
}

/* BOTÃO SECUNDÁRIO – JARDINEIRO */
.btn-jardineiro {
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
}

.btn-jardineiro span {
  display: block;
  font-size: 13px;
  font-weight: normal;
  opacity: 0.9;
}

.btn-jardineiro {
  backdrop-filter: blur(4px);
}

/* ===== PÁGINA DO FORMULÁRIO ===== */
.pagina-formulario {
  min-height: 100vh;
  background: #f4f6f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* Caixa do formulário */
.formulario {
  background: #fff;
  max-width: 520px;
  width: 100%;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Cabeçalho */
.form-header {
  text-align: center;
  margin-bottom: 25px;
}

.form-header h1 {
  font-size: 26px;
  margin-bottom: 8px;
  color: #1f3d2b;
}

.form-header p {
  font-size: 15px;
  color: #555;
}

/* Campos */
.campo {
  margin-bottom: 16px;
}

.campo label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.campo input,
.campo textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: border 0.2s, box-shadow 0.2s;
}

.campo input:focus,
.campo textarea:focus {
  outline: none;
  border-color: #3a8f3a;
  box-shadow: 0 0 0 3px rgba(58,143,58,0.15);
}

/* Linha dupla */
.linha {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Upload */
.upload small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #666;
}

/* Botão */
.btn-form {
  width: 100%;
  background: #3a8f3a;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(58,143,58,0.35);
}

/* Segurança */
.seguranca {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: #444;
}

/* Mobile */
@media (max-width: 600px) {
  .linha {
    grid-template-columns: 1fr;
  }
}

.cidades-home {
  padding: 60px 20px;
  text-align: center;
}

.cidades-home h2 {
  margin-bottom: 30px;
  color: #1f3d2b;
}

.cidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.cidade-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  color: #1f3d2b;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.cidade-card:hover {
  background: #2f8f46;
  color: #fff;
}

.city-services h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #1f3d2b;
}

.city-services p {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  color: #555;
  font-size: 16px;
}

/* CTA FINAL */
.city-cta {
  margin-top: 70px;
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  border-radius: 14px;
}

.city-cta h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.city-cta a {
  display: inline-block;
  margin-top: 20px;
  background: #fff;
  color: #1b5e20;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

.city-cta a:hover {
  background: #e8f5e9;
}

/* MOBILE */
@media (max-width: 768px) {
  .city-hero h1 {
    font-size: 28px;
  }

  .city-services h2 {
    font-size: 24px;
  }
}





.card {
  background: #f9f7f2;
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card img {
  width: 60px;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 16px;
  font-weight: 600;
}


/* ===== SERVIÇOS MAIS BUSCADOS ===== */
.servicos {
  padding: 60px 20px;
  background: #f7f8fa;
  text-align: center;
}

.servicos h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

/* CONTAINER DOS CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD INDIVIDUAL */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* ====== CONTAINER GERAL ====== */
body {
  background: #f5f7f6;
  font-family: Arial, Helvetica, sans-serif;
}



/* ====== BLOCO DO DIAGNÓSTICO Planta ====== */
body {
  background: #eef5f0;
  font-family: Arial, Helvetica, sans-serif;
}

form {
  max-width: 520px;
  margin: 40px auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

h1 {
  text-align: center;
  color: #2e7d32;
}

h3 {
  margin-top: 20px;
  text-align: center;
}

p {
  text-align: center;
  color: #555;
  font-size: 14px;
}

input[type="file"] {
  display: block;
  margin: 10px auto 20px auto;
}

/* SINTOMAS */
.sintoma {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.sintoma input {
  margin-top: 3px;
  flex-shrink: 0;
}

/* BOTÃO */
button {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 25px auto 0 auto;
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #256428;
}


/* ===== MOBILE FULL ===== */
@media (max-width: 600px) {
  .diagnostico-wrapper {
    align-items: flex-start;
    padding-top: 20px;
  }

  .diagnostico-box {
    border-radius: 12px;
    padding: 20px;
  }

  .diagnostico-box h1 {
    font-size: 22px;
  }

  .diagnostico-sub {
    font-size: 16px;
  }
}

.calendario-jardineiro {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

.calendario-jardineiro h2 {
  text-align: center;
  color: #2e7d32;
}

.subtitulo {
  text-align: center;
  margin-bottom: 20px;
}

.meses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.mes {
  padding: 10px;
  border: none;
  background: #e8f5e9;
  color: #1b5e20;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

.mes:hover {
  background: #c8e6c9;
}

.conteudo {
  display: none;
  background: #ffffff;
  border-left: 5px solid #2e7d32;
  padding: 15px;
  border-radius: 8px;
}

.conteudo h3 {
  margin-bottom: 10px;
}

.conteudo ul {
  padding-left: 18px;
}

.calendario-download {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.calendario-download h2 {
  color: #2e7d32;
  margin-bottom: 12px;
}

.calendario-download p {
  color: #444;
  font-size: 16px;
  margin-bottom: 25px;
}

.btn-calendario {
  display: inline-block;
  background: #3a8f3a;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s, background 0.2s;
}

.btn-calendario:hover {
  background: #2e7d32;
  transform: scale(1.05);
}

.mini-curso {
  max-width: 600px;
  margin: 60px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.mini-curso h2 {
  color: #2e7d32;
  margin-bottom: 15px;
}

.mini-curso p {
  color: #555;
  margin-bottom: 25px;
  font-size: 16px;
}

.btn-download {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn-download:hover {
  background: #256628;
}

.guia-valores {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.guia-valores h2 {
  text-align: center;
  color: #2e7d32;
  margin-bottom: 10px;
}

.guia-valores .descricao {
  text-align: center;
  margin-bottom: 20px;
  color: #555;
}

.guia-valores table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}

.guia-valores th,
.guia-valores td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.guia-valores th {
  background: #f2f8f2;
  color: #2e7d32;
}

.guia-valores .aviso {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.btn-orcamento {
  display: block;
  text-align: center;
  background: #2e7d32;
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn-orcamento:hover {
  background: #256628;
}
