:root {
  --verde: #2a7f65; 
  --cinza-claro: #f5f5f5; 
  --branco: #ffffff; 
  --texto: #333; 
  font-family: 'DM Sans',;
}

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

body {
  background-color: var(--cinza-claro);
  color: var(--texto);
  line-height: 1.6;
  font-family: "DM Sans", sans-serif;
}

header {
  background: var(--branco);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}

.container {
  width: 90%;
  max-width: 1140px;
  margin: auto;
}

.navbar {
  background-color: #eaf6f0;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #d4e6de;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1d1d1d;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background-color: #007d65;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu.mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #eaf6f0;
  padding: 1rem;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu a {
  text-decoration: none;
  color: #007d65;
  font-weight: 500;
  font-size: 1rem;
}

.menu a:hover {
  font-weight: 700;
}


.btn-outline {
  padding: 0.5rem 1rem;
  border: 2px solid #007d65;
  border-radius: 999px;
  color: #007d65;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}

.btn-outline:hover {
  background-color: #007d65;
  color: #fff;
}

.menu.open {
  display: flex;
}

@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .menu.open {
    display: flex;
  }
}

.hero {
  background-color: #eaf6f0; 
  padding: 100px 0 60px;
}

.hero-layout {
   display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 50%;
  min-width: 280px;
}

.hero-subtitle {
 text-transform: uppercase;
  color: #007d65; 
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-texto {
  font-size: 1.125rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.mulher1 {
  flex: 1 1 40%;
  text-align: center;
}

.mulher1 img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero-layout {
    flex-direction: column;
    text-align: center;
  }

  .hero-content,
  .mulher1 {
    flex: 1 1 100%;
  }
}

.estatisticas-box {
  position: relative;
  top: -60px;   z-index: 10;
  margin: 0 auto;
  background-color: #fff8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  gap: 2rem;
}

.estatistica {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--verde);
}

.estatistica:last-child {
  border-right: none;
}

.estatistica h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #1d1d1d;
}

.estatistica p {
  margin-top: 0.5rem;
  color: var(--verde);
}

@media (max-width: 768px) {
  .estatisticas-box {
    flex-direction: column;
    gap: 1.5rem;
  }

  .estatistica {
    border-right: none !important;
    border-bottom: 1px solid var(--verde);
    padding-bottom: 1rem;
  }

  .estatistica:last-child {
    border-bottom: none;
  }
}

.btn {
  background: var(--verde);
  color: var(--branco);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 60px 0;
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--verde);
}

.titulo-servicos {
  color: var(--verde);
  text-align: center;
  margin-bottom: 0.5rem;
}

.subtitulo-servicos {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.grid-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}

.servico-card {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.2s ease;
}

.servico-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.icon-check {
  width: 20px;
  height: 20px;
  margin-bottom: 0.5rem;
}

.servico-card h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--texto);
}

.servico-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

.invisible {
  visibility: hidden;
}

.sobre-nos {
  background-color: #fff8f0; 
  padding: 80px 0;
}

.sobre-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.sobre-img {
  flex: 1 1 40%;
  text-align: center;
}

.sobre-img img {
  max-width: 100%;
  height: auto;
}

.sobre-texto {
  flex: 1 1 55%;
}

.sobre-texto .tag {
  color: var(--verde);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.sobre-texto h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--texto);
}

.sobre-texto p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.contato {
  padding: 80px 0;
  background-color: #ffffff;
}

.contato-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.contato-info {
  flex: 1 1 45%;
}

.contato-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1d1d1d;
}

.contato-linha {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.icon {
  width: 20px;
  height: 20px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--verde);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  margin-top: 1rem;
  transition: background-color 0.2s ease;
}

.btn-whatsapp:hover {
  background-color: #207254;
}

.contato-img {
  flex: 1 1 45%;
  text-align: center;
}

.contato-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

.rodape {
  background-color: #007d65;
  color: #f4f4f4;
  padding: 40px 0;
  font-size: 0.95rem;
}

.rodape-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.rodape-info {
  flex: 1;
}

.rodape-info strong {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.rodape-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rodape-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.rodape-social a:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .rodape-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .menu {
    flex-direction: column; 
    gap: 0.75rem;
  }
}