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

body {
  font-family: 'Inter', sans-serif;
  background: #FFB800;
  color: #1a1a1a;
  min-height: 100vh;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 48px 32px 32px;
  max-width: 1100px;
  margin: 0 auto;
  flex: 1;
}

.hero-text {
  flex: 1;
  max-width: 520px;
}

.badge {
  display: inline-block;
  background: #1D3C8F;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #1D3C8F;
  margin-bottom: 18px;
}

.destaque {
  color: #fff;
  -webkit-text-stroke: 2px #1D3C8F;
}

.subtitulo {
  font-size: 1.05rem;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 500;
}

.beneficios {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.beneficios li {
  font-size: 1rem;
  font-weight: 600;
  color: #1D3C8F;
  background: rgba(255,255,255,0.45);
  padding: 8px 16px;
  border-radius: 10px;
}

.botoes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.botoes .btn-whatsapp,
.botoes .btn-telegram {
  width: 100%;
  justify-content: center;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  padding: 18px 36px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: transform 0.15s, box-shadow 0.15s;
  animation: pulse 2s infinite;
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
  50%       { box-shadow: 0 6px 36px rgba(37, 211, 102, 0.85); }
}

.aviso {
  margin-top: 14px;
  font-size: 0.9rem;
  color: #1D3C8F;
  font-weight: 700;
}

/* IMAGEM */
.hero-img {
  flex: 1;
  max-width: 460px;
  display: flex;
  justify-content: center;
}

.hero-img img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

/* SEÇÃO: O QUE VAI ENCONTRAR */
.encontrar {
  background: #1D3C8F;
  padding: 64px 32px;
  text-align: center;
}

.encontrar h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.destaque2 {
  color: #FFB800;
}

.encontrar-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 48px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 56px;
}

.card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: left;
  transition: transform 0.2s, background 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.14);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #FFB800;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}

.destaque-card {
  background: rgba(255, 184, 0, 0.12);
  border-color: #FFB800;
}

/* CTA FINAL */
.cta-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-final > p:first-child {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.btn-telegram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #229ED9;
  color: white;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  padding: 18px 36px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(34, 158, 217, 0.5);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-telegram:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(34, 158, 217, 0.65);
}

.btn-grande {
  font-size: 1.2rem;
  padding: 20px 48px;
}

.cta-final .aviso {
  color: #FFB800;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.82rem;
  color: #1D3C8F;
  font-weight: 600;
  opacity: 0.8;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    padding: 32px 20px 24px;
    gap: 28px;
    text-align: center;
  }

  .hero-img img {
    width: 260px;
    height: 260px;
  }

  .beneficios li {
    text-align: left;
  }

  .btn-whatsapp {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px 24px;
  }

  .badge {
    font-size: 0.78rem;
  }
}
