/* ===== GOOGLE FONT ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  background: #fff;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BOTÕES ===== */
.btn-primary {
  background: #1a3a1a;
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover {
  background: #122a12;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: #1a3a1a !important;
  border: 2px solid #1a3a1a;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: inline-block;
}
.btn-secondary:hover {
  background: #1a3a1a;
  color: #fff !important;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 18px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a1a;
  text-decoration: none;
}
.logo span { color: #1a3a1a; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
  transition: color 0.3s;
}
.nav-links a:hover { color: #1a3a1a; }

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #1a1a1a;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #1a1a1a;
  border-radius: 3px;
  display: block;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #eef4ee 0%, #fff 100%);
  padding: 80px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.hero-content { flex: 1; max-width: 520px; }

.badge {
  display: inline-block;
  background: #e6efe6;
  border: 1px solid #a8c8a8;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a3a1a;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
}
.hero h1 span { color: #1a3a1a; }

.hero p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  text-align: center;
}
.hero-image img { border-radius: 20px; width: 100%; }

/* ===== SEÇÕES GERAIS ===== */
section { padding: 80px 0; }

h2 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: #1a1a1a;
}
h2 span { color: #1a3a1a; }

/* ===== BENEFÍCIOS ===== */
.beneficios { background: #fff; }
.beneficios .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.beneficios .card {
  background: #eef4ee;
  border: 1px solid #a8c8a8;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.beneficios .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.beneficios .card i {
  font-size: 2.5rem;
  color: #1a3a1a;
  margin-bottom: 16px;
}
.beneficios .card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}
.beneficios .card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ===== COMO FUNCIONA ===== */
.como-funciona { background: #f9f9f9; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.step {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.step span {
  font-size: 3rem;
  font-weight: 900;
  color: #1a3a1a;
  opacity: 0.35;
  display: block;
  margin-bottom: 12px;
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}
.step p { font-size: 0.95rem; color: #666; line-height: 1.6; }

/* ===== DEPOIMENTOS ===== */
.depoimentos { background: #fff; }
.depoimentos .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.depoimentos .card {
  background: #eef4ee;
  border: 1px solid #a8c8a8;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.depoimentos .card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid #1a3a1a;
}
.depoimentos .card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
  font-style: italic;
}
.depoimentos .card strong {
  color: #1a3a1a;
  font-size: 0.9rem;
}

/* ===== PLANOS ===== */
.planos { background: #f9f9f9; }
.planos .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.planos .card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
}
.planos .card.destaque {
  border-color: #1a3a1a;
  box-shadow: 0 8px 40px rgba(26,58,26,0.18);
  transform: scale(1.03);
}
.planos .card .tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a3a1a;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.planos .card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #222;
}
.planos .card .preco {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a3a1a;
  margin-bottom: 24px;
}
.planos .card .preco span {
  font-size: 1rem;
  color: #999;
  font-weight: 400;
}
.planos .card ul {
  margin-bottom: 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.planos .card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #444;
}
.planos .card ul li i { color: #1a3a1a; }

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .hero .container { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 2rem; }
  .hero-image { max-width: 100%; }

  h2 { font-size: 1.6rem; }
  .planos .card.destaque { transform: scale(1); }
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #aaa;
  padding: 60px 0 0;
  font-size: 0.92rem;
  text-align: left;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  width: 100%;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Logo no footer */
.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff !important;
  display: inline-block;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-logo span { color: #4a8a4a; }

.footer-desc {
  color: #888;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.9rem;
  text-align: left;
}

/* Redes sociais */
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 1rem;
  transition: all 0.3s;
  text-decoration: none;
}
.footer-social a:hover {
  background: #4a8a4a;
  border-color: #4a8a4a;
  color: #fff;
  transform: translateY(-3px);
}

/* Colunas */
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  text-align: left;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #4a8a4a;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  text-align: left;
}

.footer-col ul li a {
  color: #888;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s, gap 0.3s;
  text-decoration: none;
}
.footer-col ul li a i {
  font-size: 0.7rem;
  color: #4a8a4a;
}
.footer-col ul li a:hover {
  color: #fff;
  gap: 12px;
}

/* Contato */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  color: #888;
  font-size: 0.9rem;
  text-align: left;
}
.footer-contact li i {
  color: #4a8a4a;
  font-size: 1rem;
  margin-top: 2px;
  min-width: 16px;
}
.footer-contact li a {
  color: #888;
  transition: color 0.3s;
  text-decoration: none;
}
.footer-contact li a:hover { color: #fff; }

/* Divisor */
.footer-divider {
  height: 1px;
  background: #222;
  margin: 50px 0 30px;
}

/* Rodapé inferior */
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 30px;
  flex-wrap: wrap;
}

.footer-cnpj p {
  color: #666;
  font-size: 0.82rem;
  line-height: 1.8;
  text-align: left;
}
.footer-cnpj strong { color: #999; }

.footer-disclaimer {
  margin-top: 6px;
  font-size: 0.78rem !important;
  color: #555 !important;
  font-style: italic;
  max-width: 500px;
  text-align: left;
}

.footer-copy { text-align: right; }
.footer-copy p {
  color: #555;
  font-size: 0.82rem;
  line-height: 1.8;
}

/* ===== RESPONSIVO FOOTER ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
}