/* Reset básico */
body, h1, h2, h3, h4, p, ul, li, a, img, button, input, textarea {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
}

body {
  background: #fff;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background: #2db84b;
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 48px;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  display: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  padding: 100px 40px 60px;
  text-align: center;
  background-color: #f6fff7;
}

.hero h1 {
  font-size: 42px;
  color: #2db84b;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* CTA Button */
.cta-button {
  background: #2db84b;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #28a045;
}

/* Cards */
.como-funciona {
  padding: 60px 40px;
  text-align: center;
}

.como-funciona h2 {
  font-size: 28px;
  color: #2db84b;
  margin-bottom: 30px;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  width: 280px;
  background: #f3f3f3;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #2db84b;
  margin-bottom: 10px;
}

/* Slider */
.produtos-slider {
  padding: 60px 40px;
  background-color: #fff;
  text-align: center;
}

.produtos-slider h2 {
  font-size: 28px;
  color: #2db84b;
  margin-bottom: 30px;
}

.slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.slider::-webkit-scrollbar {
  display: none;
}

.produto {
  flex: 0 0 auto;
  width: 260px;
  background: #f3f3f3;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.produto:hover {
  transform: translateY(-5px);
}

.produto img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.produto h3 {
  color: #2db84b;
}

.produto p.descricao {
  font-size: 14px;
  margin-bottom: 14px;
}

/* Produtos lista */
.produtos-lista .container {
  max-width: 1000px;
  margin: auto;
  padding: 40px;
}

.produto-detalhe {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.produto-detalhe img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.produto-detalhe .texto {
  flex: 1;
  min-width: 260px;
}

.produto-detalhe h2 {
  font-size: 28px;
  color: #2db84b;
  margin-bottom: 10px;
}

.produto-detalhe h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #444;
}

.produto-detalhe p {
  margin-bottom: 16px;
  font-size: 16px;
}

/* Página individual do produto */
.produto-pagina {
  padding: 60px 40px;
  background-color: #f6fff7;
}

.produto-pagina .container {
  max-width: 800px;
  margin: auto;
}

.produto-pagina .produto-banner {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  margin: 20px 0 30px;
  display: block;
}

.produto-pagina h2 {
  margin-top: 30px;
  color: #2db84b;
  font-size: 22px;
}

.produto-pagina ul {
  margin-top: 15px;
  padding-left: 20px;
}

.produto-pagina ul li {
  margin-bottom: 12px;
}

/* Tabela de preços */
.tabela-precos {
  padding: 60px 40px;
}

.precos-tabela {
  width: 100%;
  border-collapse: collapse;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.precos-tabela th,
.precos-tabela td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.precos-tabela th {
  background-color: #2db84b;
  color: white;
  font-weight: 600;
}

.precos-tabela td:last-child {
  text-align: center;
}

.precos-tabela tr:last-child td {
  border-bottom: none;
}

/* Formulário de contato corrigido */
.contato-formulario {
  padding: 60px 40px;
  background-color: #f6fff7;
}

.contato-formulario .container {
  max-width: 600px;
  margin: auto;
}

.contato-formulario h2 {
  font-size: 24px;
  color: #2db84b;
  margin-bottom: 10px;
}

.contato-formulario form .form-group {
  margin-bottom: 20px;
  width: 100%;
}

.contato-formulario label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #2db84b;
}

.contato-formulario input,
.contato-formulario textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
}

.contato-formulario textarea {
  resize: vertical;
}

.contato-formulario .checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contato-formulario .checkbox input {
  margin-right: 10px;
}

/* Sobre */
.sobre-conteudo {
  padding: 60px 40px;
}

.sobre-conteudo .container {
  max-width: 800px;
  margin: auto;
}

.sobre-conteudo h2 {
  font-size: 24px;
  margin-top: 40px;
  color: #2db84b;
}

.sobre-conteudo p {
  margin-top: 16px;
  font-size: 16px;
}

.sobre-conteudo ul {
  margin-top: 16px;
  padding-left: 20px;
}

.sobre-conteudo ul li {
  margin-bottom: 10px;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  width: 64px;
  height: 64px;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.whatsapp-text {
  display: none;
}

/* Rodapé */
footer {
  background-color: #eeeeee;
  padding: 30px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

/* Animações */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Responsivo */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #2db84b;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .cards,
  .slider,
  .produto-detalhe {
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-text {
    display: none;
  }
}

@media (min-width: 769px) {
  .whatsapp-text {
    display: inline-block;
    margin-left: 10px;
    font-weight: 600;
    color: #2db84b;
  }
}