* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f4f1ee;
  color: #2d2d2d;
}

.hero {
  padding: 40px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}


.container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Imagem */
.hero-image {
  position: relative;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.badge {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37, #b89b2e);
  color: #111;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 50%;
}

.name {
  margin-top: 20px;
}

.name strong {
  font-size: 20px;
}

.name p {
  font-size: 14px;
  color: #777;
}

/* Conteúdo */
.hero-content .tag {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 13px;
  color: #1b5e20;
  background: #e8f5e9;
  padding: 8px 14px;
  border-radius: 20px;
}

.hero-content h1 {
  font-size: 32px;
  margin-bottom: 25px;
  line-height: 1.3;
}

.benefits {
  list-style: none;
  margin-bottom: 30px;
}

.benefits li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2e7d32;
}

/* Botão */
.btn-whatsapp {
  display: inline-block;
  background: #1e88e5;
  color: #fff;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
  margin-bottom: 20px;
  margin-top: 10px;
}

.btn-whatsapp:hover {
  background: #1565c0;
}

/* Confiança */
.trust {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.trust-item {
  background: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Responsivo */
@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .benefits {
    text-align: left;
    display: inline-block;
  }
}
.legal-note {
  font-size: 13px;
  color: #666;
  margin: 10px 0 20px 0;
}
.footer {
  margin-top: 60px;
  padding: 30px 20px;
  text-align: center;
  font-size: 12px;
  color: #777;
  background: #f1f1f1;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  margin: 0 5px;
}

.footer-links a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .btn-whatsapp {
    width: 100%;
    text-align: center;
    padding: 18px;
    font-size: 16px;
  }
}
@media (max-height: 800px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .benefits {
    margin-bottom: 20px;
  }
}
.cta-note {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}
