* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0f172a;
  color: #e5e7eb;
  line-height: 1.6;
}

/* HERO */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #020617, #0f172a);
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #cbd5f5;
}

.btn-primary {
  background: #22c55e;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn-trimary {
  background: #22c55e;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* SEÇÕES */
.section {
  padding: 70px 20px;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

/* DESTAQUE */
.destaque {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
}

/* BENEFÍCIOS */
.beneficios li {
  list-style: none;
  margin-bottom: 10px;
}

/* CARDS */
.cards {
  text-align: center;
}

.card {
  margin: 30px auto;
  max-width: 400px;
  padding: 25px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
}

.preco {
  margin-top: 15px;
  font-weight: bold;
  color: #e3fc04;
  font-size: 30px;
}

.preco-destaque {
  font-size: 38px;
  font-weight: 800;

  background: linear-gradient(
    90deg,
    #f74a06 0%,
    #e8f803 50%,
    #05ebf3 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}

/* SOBRE */
.sobre {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap; /* 🔥 ESSENCIAL */
}

.texto {
  flex: 1; /* 🔥 isso joga o texto pra lateral da foto */
}

/* 🔥 quebra a linha SEM afetar o botão */
.btn-wrap {
  flex-basis: 100%;
  text-align: center;
  margin-top: 30px;
}

.btn-trimary {
  display: inline-block;
  background: #22c55e;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.sobre img {
  width: 140px;
  border-radius: 50%;
  height: 200px;

}

/* CONTATO */
.contato {
  text-align: center;
}

.btn-secury {
  display: block;
  width: fit-content;
  margin: 40px auto;
  background: #22c55e;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}


/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #22c55e;
  color: #f8f6f6;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  z-index: 999;
}
