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

:root {
  --laranja: #f59e0b;
  --laranja-escuro: #ea580c;
  --vermelho: #c0392b;
  --texto: #2b2b2b;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  background: #ffffff;
  color: var(--texto);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 20px 56px 20px;
  text-align: center;
}

/* ============ TÍTULO ============ */
.headline {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.25;
  color: #1f2937;
  margin-bottom: 18px;
}
.headline .destaque { color: var(--vermelho); }

/* ============ SUBTÍTULO ============ */
.sub {
  font-size: 19px;
  color: #374151;
  max-width: 760px;
  margin: 0 auto 28px auto;
  line-height: 1.5;
}
.sub .grifo-laranja { color: var(--laranja); font-weight: bold; }
.sub .grifo-vermelho { color: var(--vermelho); font-weight: bold; }

/* ============ IMAGEM CENTRAL ============ */
.hero-img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1.05;
  margin: 8px auto 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  background: radial-gradient(circle at 50% 60%, #fff4d6 0%, #f6b73c 28%, #5a3b12 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img .img-fallback {
  color: #5a3b12;
  font-size: 13px;
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* ============ DIVISOR ============ */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 32px auto 28px auto;
  max-width: 360px;
  color: var(--laranja);
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--laranja), transparent);
}
.divider span { font-size: 18px; }

/* ============ BOTÃO ============ */
.cta {
  display: inline-block;
  width: 100%;
  max-width: 420px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  padding: 22px 24px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fcd34d 0%, var(--laranja) 60%, var(--laranja-escuro) 100%);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  animation: pulse 2s infinite;
}
.cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.6);
}
@keyframes pulse {
  0%   { box-shadow: 0 8px 20px rgba(245, 158, 11, 0.45); }
  70%  { box-shadow: 0 8px 20px rgba(245, 158, 11, 0.0); }
  100% { box-shadow: 0 8px 20px rgba(245, 158, 11, 0.45); }
}

/* ============ SELO DE CONFIANÇA ============ */
.trust {
  margin-top: 18px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #6b7280;
}

/* ============ RESPONSIVO ============ */
@media (max-width: 480px) {
  .wrap { padding: 32px 16px 44px 16px; }
  .headline { font-size: 24px; }
  .sub { font-size: 17px; }
}
