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

body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: 'Manrope', system-ui, sans-serif;
  color: #fdece0;
  background: radial-gradient(120% 90% at 50% -10%, #ef9a5c 0%, #d0632e 40%, #9c3d17 76%, #6a2610 100%);
  background-attachment: fixed;
}
::selection { background: rgba(255,190,140,.4); }
a { text-decoration: none; color: inherit; }

/* ---------- animações ---------- */
@keyframes sosPulse {
  0%   { box-shadow: 0 12px 34px rgba(0,0,0,.3), 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 12px 34px rgba(0,0,0,.3), 0 0 0 22px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 34px rgba(0,0,0,.3), 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes sosBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes sosGlow { 0%,100% { opacity:.55; transform: scale(1); } 50% { opacity:.85; transform: scale(1.08); } }

/* ---------- notificação (toast) ---------- */
.toast-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  display: flex; justify-content: center; padding: 14px 12px 0;
  pointer-events: none;
}
.toast {
  display: flex; align-items: center; gap: 12px;
  width: min(380px, 92vw);
  padding: 10px 14px 10px 10px;
  border-radius: 16px;
  background: rgba(255,251,247,.97);
  box-shadow: 0 16px 40px rgba(60,22,8,.4);
  border: 1px solid rgba(230,150,90,.5);
  opacity: 0;
}
.toast.show { animation: toastIn 3s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes toastIn {
  0%   { opacity: 0; transform: translateY(-22px) scale(.96); }
  16%  { opacity: 1; transform: translateY(0) scale(1); }
  86%  { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-10px) scale(.99); }
}
.toast-avatar {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px;
  object-fit: cover; display: block;
  border: 1.5px solid rgba(247,211,140,.6);
  box-shadow: 0 4px 12px rgba(90,36,16,.3);
}
.toast-info { flex: 1; min-width: 0; text-align: left; }
.toast-line1 { display: flex; align-items: center; gap: 6px; }
.toast-name { font-weight: 800; font-size: 14px; color: #5c2410; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.toast-phone { font-size: 12px; color: #a06a44; font-weight: 600; white-space: nowrap; }
.toast-line2 { display: flex; align-items: center; gap: 5px; margin-top: 1px; }
.toast-status { font-size: 12.5px; color: #1f7a45; font-weight: 700; }
.toast-wa { flex-shrink: 0; }

/* ---------- hero ---------- */
.hero {
  position: relative; z-index: 10;
  min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  gap: clamp(6px, 1.5vh, 14px);
  padding: clamp(52px, 8vh, 74px) 22px clamp(14px, 2.5vh, 30px);
  max-width: 480px; margin: 0 auto; width: 100%;
}

.brand { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.brand-rule { width: 44px; height: 1px; background: linear-gradient(90deg, transparent, #f2cf9c, transparent); }
.brand-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(21px,5.6vw,30px); letter-spacing: .06em; color: #fff; }
.brand-sub { font-size: 10px; letter-spacing: .32em; font-weight: 700; color: #ffc79c; text-transform: uppercase; }

.badge-free {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid rgba(247,211,140,.65); background: rgba(247,211,140,.12);
  font-size: 12px; font-weight: 800; letter-spacing: .12em; color: #f7d38c; text-transform: uppercase;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: #25D366; box-shadow: 0 0 0 4px rgba(37,211,102,.25); }
.dot-gold { background: #f7d38c; box-shadow: 0 0 0 4px rgba(247,211,140,.22); }

.headline { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(22px,6.2vw,44px); line-height: 1.04; margin: 0; color: #fff; text-wrap: balance; }
.ital { font-style: italic; color: #ffcf9f; }

.sub { max-width: 430px; margin: 0; font-size: clamp(13px,3.5vw,17px); line-height: 1.4; color: #fbdcc4; font-weight: 500; text-wrap: pretty; }
.sub strong { color: #fff; }
.sub .hi, .hi { color: #ffcf9f; }

/* ---------- foto ---------- */
.photo-block { display: flex; justify-content: center; align-items: flex-end; position: relative; margin: 2px 0; }
.photo-glow {
  position: absolute; bottom: 4%; width: 82%; max-width: 230px; aspect-ratio: 1/1; border-radius: 50%;
  background: radial-gradient(circle at 50% 52%, rgba(255,206,158,.5), rgba(255,206,158,0) 66%);
  filter: blur(4px); animation: sosGlow 7s ease-in-out infinite;
}
.photo-frame { position: relative; width: min(215px, 56%); }
.photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
  border-radius: 22px; border: 2px solid rgba(247,211,140,.6);
  box-shadow: 0 22px 46px rgba(60,22,8,.5);
}
.off-badge {
  position: absolute; top: -12px; left: -14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg,#e2712f,#a8431f); border: 1.5px solid #f7d38c;
  box-shadow: 0 10px 22px rgba(60,22,8,.55); animation: sosBob 3s ease-in-out infinite;
}
.off-small { font-size: 8px; letter-spacing: .12em; font-weight: 800; color: #ffe6c2; }
.off-big { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 19px; line-height: 1; color: #fff; }
.shop-badge {
  position: absolute; bottom: 12px; right: -16px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 10px; border-radius: 10px;
  background: rgba(255,251,247,.97); box-shadow: 0 10px 22px rgba(60,22,8,.45);
  font-size: 10.5px; font-weight: 800; color: #5c2410;
}

/* ---------- prova social ---------- */
.proof { display: flex; align-items: center; gap: 10px; margin-top: 2px; }
.avatars { display: flex; }
.avatars img { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #7a2e12; object-fit: cover; }
.avatars img + img { margin-left: -11px; }
.proof-text { font-size: 13.5px; font-weight: 700; color: #fdece0; }

/* ---------- CTA ---------- */
.cta {
  margin-top: 4px;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  width: min(420px, 100%); padding: 16px 24px; border-radius: 15px;
  background: linear-gradient(135deg,#2ee06f 0%,#1eb85a 55%,#128C7E 100%);
  color: #fff; font-weight: 800; font-size: clamp(15px,4.2vw,18px); letter-spacing: .01em;
  animation: sosPulse 2.4s ease-out infinite; cursor: pointer;
  transition: filter .15s ease, transform .1s ease;
}
.cta:hover { filter: brightness(1.06); transform: translateY(-1px); }
.cta:active { transform: translateY(1px); }
.cta-wa { flex-shrink: 0; animation: sosBob 2.4s ease-in-out infinite; }

.reassure { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: #f7d38c; font-weight: 800; letter-spacing: .02em; }
