body {
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(to bottom, #f9fff4, #f1f8e9);
  color: #2b2b2b;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* ===== Navbar ===== */
.navbar {
  background: linear-gradient(135deg, #81c784, #66bb6a);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  padding: 15px 30px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.25);
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #f1f8e9;
}

/* ===== Hero Section ===== */
.hero-section {
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(102,187,106,0.9), rgba(56,142,60,0.95)),
              url('https://picsum.photos/1920/1080?blur=5&random=21') center/cover no-repeat;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.6);
}

.hero-section h1 {
  font-size: 3rem;
  font-family: 'Cinzel', serif;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

/* ===== Seções ===== */
.about-section,
.contact-section,
.services-section {
  padding: 60px 30px;
  margin: 40px auto;
  max-width: 1100px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.about-section {
  background: linear-gradient(145deg, #66bb6a, #388e3c);
  color: #fff;
}

.services-section {
  background: #f9fff4;
  border: 2px solid #81c784;
}

.contact-section {
  background: linear-gradient(145deg, #66bb6a, #388e3c);
  color: #fff;
  margin: 40px auto 80px auto; /* Espaço antes do footer */
}

/* ===== Títulos ===== */
h1, h2 {
  font-family: 'Cinzel', serif;
  color: #2e7d32;
}

.about-section h2,
.contact-section h2 {
  color: #fff;
}

.services-title {
  color: #388e3c;
  font-weight: 700;
}

/* ===== Botões ===== */
.btn-primary {
  background: linear-gradient(135deg, #388e3c, #66bb6a);
  border: none;
  color: #fff;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #66bb6a, #388e3c);
  transform: scale(1.05);
}

/* ===== Destaques (FAQ e Testemunhos) ===== */
.faq, .testimonial {
  background-color: rgba(249, 255, 244, 0.95);
  border-left: 6px solid #81c784;
  padding: 25px 20px;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq:hover, .testimonial:hover {
  background-color: #fff;
  transform: translateY(-5px);
}

/* ===== Logo ===== */
.logo img {
  width: 150px;
  height: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

/* ===== Footer ===== */
.footer-custom {
  background-color: #388e3c;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  border-top: 4px solid #2e7d32; /* separador visual */
}

/* ===== Responsividade ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px;
  }
  .navbar {
    padding: 10px 15px;
  }
  .navbar a {
    margin: 0 8px;
  }
  .about-section,
  .services-section,
  .contact-section {
    padding: 40px 15px;
  }
}