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

body {
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* permite posicionar a logo absoluta */
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5px;
}

.nav-row ul {
  display: flex;
  list-style: none;
  gap: 15px;
}

.navbar li {
  margin: 0 20px;
}

.nav-row a {
  color: #000000;
  text-decoration: none;
  font-weight: 400;
}

.brand {
  position: relative; /* em vez de absolute */
  margin-right: 15px; /* espaço entre logo e menu */
}

.brand-logo {
  height: 65px; /* menor altura */
  padding-bottom: 15px;
  margin: 0;
  max-width: 1200px;
  margin: 0 auto;
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}


.nav-links i {
  font-size: 1rem; /* Tamanho dos ícones */
}

/* Banner */
.banner {
  height: 100vh;
  position: relative;
  text-align: center;
  color: rgb(252, 248, 248);
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.brand-logo {
  margin-bottom: 0;
  padding-bottom: 5px;
}

.banner-content {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  text-align: left;
  color: white;
  max-width: 500px;
}

.banner-content h1 {
  font-size: 2rem; /* Aumenta o tamanho do título */
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-custom {
  background-color: #A3A30D;   /* cor principal */
  border: none;                /* sem borda padrão do Bootstrap */
  color: #fff;                 /* texto branco */
  transition: all 0.3s ease;   /* animação suave */
  width: 300px;
}

.btn-custom:hover {
  background-color: #8c8c0b;   /* cor mais escura no hover */
  color: #fff;                 /* mantém texto branco */
  transform: scale(1.05);      /* efeito de leve aumento */
}

.btn-custom:active {
  background-color: #6e6e09;   /* cor mais escura quando clicado */
  transform: scale(0.98);      /* efeito de clique */
}


.btn-banner {
  display: inline-block;
  background: #4CAF50; /* Verde para combinar com jardinagem */
  color: white;
  padding: 12px 25px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.btn-banner:hover {
  background: #45a049;
}

.titulo-cards {
    font-family: 'Poppins', sans-serif; /* Fonte Poppins */
    font-size: 30px;                  /* Tamanho do título */
    font-weight: 200;                    /* Negrito */
    color: #333;                         /* Cor do texto */
    margin-bottom: 40px;                 /* Espaço abaixo do título */
}

.custom-green {
  background-color: #A9D7A0;
}

.Texto-secao h3 {
  font-size: 40px;
  font-weight: bold;
  font-family: 'Poppins';
  margin-left: 40px;
}

.Texto-secao p {
  font-size: 25px;
  font-weight:100;
  font-family: 'Poppins';
  margin-left: 40px;

}

/* Padronização das imagens nos cards */
.card-img-top {
  width: 100%;
  height: 250px;            /* altura mais equilibrada */
  object-fit: contain;      /* mantém a proporção real da imagem */
  object-position: center;  /* força centralização horizontal + vertical */
  padding: 20px;            /* espaço interno igual */
  background-color: #fff;   /* fundo limpo para imagens pequenas */
}

/* Ajuste profissional do card */
.card {
  border-radius: 12px;
  padding-top: 10px;
}

.card-body {
  padding: 15px;
}

/* Garantir alinhamento vertical uniforme */
.col-md-3.d-flex {
  display: flex;
  justify-content: center;
}

.accordion-content {
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.accordion-open {
  max-height: 3000px; /* espaço suficiente para expandir */
}

.accordion-closed {
  max-height: 450px; /* altura suficiente para mostrar 3 produtos */
}

.footer-folhas {
  background: #e8f5e9;
  color: #2e4e3f;
}

.folhas-top {
  background: url('https://i.imgur.com/2Z9ftkP.png') repeat-x;
  height: 60px;
  background-size: contain;
}

.footer-copy {
  background: #1b3a2b;
  color: #fff;
}

.surgir {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.surgir.show {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-row {
    display: flex;
    flex-direction: column; /* logo em cima, links embaixo */
    align-items: center;
    gap: 12px;
  }

  .brand {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .brand-logo {
    margin: 0 auto;
  }

  .nav-links {
    display: flex;
    flex-direction: row;     /* links lado a lado */
    justify-content: center; /* centralizados */
    align-items: center;
    width: 100%;
    gap: 20px;
    padding: 0;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    text-align: center;
    white-space: nowrap; /* evita quebrar linha */
  }

   .banner-content {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 0 15px;
    z-index: 2;
  }

  .banner-content h1 {
    margin-bottom: 10px;
  }

  .banner-content p {
    margin-bottom: 15px;
  }

  .btn-banner {
    margin-top: 5px;
  }
  
}