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

:root {
  /* vermelho morango (destaques) */
  --red: #e83f42;
  --red-dark: #c8302f;
  --red-light: #ff5c5e;
  /* azul (protagonista / botões) */
  --blue: #1690e8;
  --blue-dark: #0a6cc4;
  --blue-light: #5bb8f7;
  /* marca */
  --navy: #0c63b5;
  --lavender: #d6dfee;
  /* base clara */
  --bg: #fefefe;
  --bg-alt: #eef2f9;
  --bg-card: #ffffff;
  --ink: #14162b;
  --ink-soft: #565d75;
  --border: #dde4f0;
  --white: #ffffff;
  --gray: #8b93a3;
  --gray-light: #565d75;
  --whats: #25d366;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 40px rgba(20,22,43,.10);
  --shadow-red: 0 12px 40px rgba(232,63,66,.25);
  --shadow-blue: 0 14px 44px rgba(22,144,232,.32);
  --ease: .35s cubic-bezier(.4,0,.2,1);
  --maxw: 1180px;
}

html {
  scroll-behavior: smooth;
  overflow-anchor: none;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .brand-text { font-family: 'Poppins', sans-serif; color: var(--ink); overflow-wrap: break-word; }
p, li, span, a, label, strong, b, s { overflow-wrap: break-word; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].in { opacity: 1; transform: translateY(0); }

.topbar {
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
  background-size: 200% 100%;
  animation: slideGrad 6s linear infinite;
  color: #fff;
  text-align: center;
  font-size: .82rem;
  letter-spacing: .3px;
  padding: 9px 16px;
  position: relative;
  z-index: 50;
}
.topbar strong { font-weight: 800; }
@keyframes slideGrad { to { background-position: 200% 0; } }

.pulse-dot {
  display: inline-block;
  width: 9px; height: 9px;
  background: #fff;
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: middle;
  animation: pulse 1.3s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  70% { box-shadow: 0 0 0 9px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.hero {
  position: relative;
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(91,184,247,.55), transparent 55%),
    radial-gradient(800px 600px at 100% 100%, rgba(10,108,196,.45), transparent 60%),
    linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 42%, var(--blue-dark) 100%);
  overflow: hidden;
  padding-bottom: 20px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .3;
}
.blob-1 { width: 440px; height: 440px; background: var(--blue-light); top: -140px; right: -90px; animation: float 14s ease-in-out infinite; }
.blob-2 { width: 340px; height: 340px; background: var(--red); bottom: -120px; left: -70px; opacity: .2; animation: float 18s ease-in-out infinite reverse; }
.blob-3 { width: 280px; height: 280px; background: var(--white); top: 38%; left: 52%; opacity: .12; animation: float 20s ease-in-out infinite; }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 4; line-height: 0; pointer-events: none; }
.hero-wave svg { display: block; width: 100%; height: 90px; }
.hero-wave path { fill: var(--bg-alt); }

/* divisores entre seções (formas variadas) */
.divider { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 4; line-height: 0; pointer-events: none; }
.divider svg { display: block; width: 100%; height: 70px; }
.divider-white path { fill: var(--bg); }
.divider-navy path { fill: var(--navy); }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-30px) scale(1.08); }
}

.nav {
  position: relative; z-index: 5;
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 40px; width: auto; }
.nav-cta {
  background: var(--white); color: var(--blue-dark);
  font-weight: 700; font-size: .9rem;
  padding: 10px 20px; border-radius: 999px;
  transition: var(--ease);
  box-shadow: 0 6px 18px rgba(20,22,43,.18);
}
.nav-cta:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.hero-inner {
  position: relative; z-index: 5;
  max-width: var(--maxw); margin: 0 auto;
  padding: 40px 24px 70px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  font-weight: 700; font-size: .8rem;
  letter-spacing: 1px;
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.tag svg { width: 15px; height: 15px; }
.hero-copy h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: #fff;
}
.hl {
  color: #c5e2ff;
  position: relative;
}
.lead {
  font-size: 1.08rem;
  color: rgba(255,255,255,.9);
  max-width: 520px;
  margin-bottom: 24px;
}
.lead strong { color: #fff; }

.hero-perks { display: grid; gap: 10px; margin-bottom: 30px; }
.hero-perks li { display: flex; align-items: center; gap: 11px; font-weight: 500; color: #fff; }
.hero-perks .check {
  flex: none;
  width: 24px; height: 24px;
  background: #fff;
  color: var(--blue-dark);
  border-radius: 50%;
  display: grid; place-items: center;
}
.hero-perks .check svg { width: 15px; height: 15px; }

.hero-actions { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  box-shadow: 0 14px 40px rgba(232,63,66,.45);
}
.hero-actions .btn-primary:hover { box-shadow: 0 20px 52px rgba(232,63,66,.55); }

.social-proof { display: flex; align-items: center; gap: 12px; }
.form-wrap .social-proof { justify-content: center; margin-top: 20px; }
.avatars { display: flex; }
.avatars img {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -12px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(20,26,34,.18);
}
.avatars img:first-child { margin-left: 0; }
.proof-text { font-size: .9rem; color: rgba(255,255,255,.85); }
.proof-text strong { color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 1rem;
  border: none; cursor: pointer;
  border-radius: 999px;
  padding: 15px 32px;
  transition: var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(20,22,43,.45); }
.btn-primary:active { transform: translateY(-1px); }
.btn-lg { font-size: 1.08rem; padding: 17px 38px; }
.btn-block { width: 100%; }
.btn-whats { background: var(--whats); color: #fff; }
.btn-whats:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,.4); }

.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--border);
  border-top: 5px solid var(--blue);
}
.form-head { text-align: center; margin-bottom: 22px; }
.form-head h2 { font-size: 1.55rem; font-weight: 800; color: var(--ink); }
.form-head p { font-size: .92rem; color: var(--ink-soft); margin-top: 4px; }

.field { margin-bottom: 15px; }
.field label {
  display: block;
  font-size: .82rem; font-weight: 600;
  color: var(--ink); margin-bottom: 6px;
}
.field input {
  width: 100%;
  font-family: inherit; font-size: 1rem;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: var(--ease);
}
.field input::placeholder { color: #aab0b6; }
.field input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20,22,43,.16);
}
.field input.invalid {
  border-color: var(--red);
  background: #fff5f6;
}
.field-error {
  display: block;
  font-size: .76rem; color: var(--red-dark);
  margin-top: 5px; min-height: 1px;
}

#submitBtn { margin-top: 8px; }
#submitBtn.loading { opacity: .8; pointer-events: none; }

.form-note {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  text-align: center;
  font-size: .76rem; color: var(--ink-soft);
  margin-top: 14px;
}
.form-note svg { width: 14px; height: 14px; flex: none; }

.form-success { text-align: center; padding: 12px 0; }
.success-icon {
  width: 70px; height: 70px;
  margin: 0 auto 16px;
  background: var(--whats);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  animation: pop .5s ease;
}
.success-icon svg { width: 38px; height: 38px; }
.btn-whats svg { width: 20px; height: 20px; margin-right: 9px; }
@keyframes pop { 0% { transform: scale(0); } 70% { transform: scale(1.15); } 100% { transform: scale(1); } }

/* Botão "Entrar no grupo" pedindo o clique: pulsa + cursor animado */
.whats-link { position: relative; animation: whatsCallout 1.5s ease-in-out infinite; }
.whats-link:hover { animation: none; }
@keyframes whatsCallout {
  0%, 100% { transform: translateY(0); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
  50% { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,.55); }
}
/* Cursor "clique aqui" mais evidente no botão do WhatsApp */
.whats-link .click-cursor {
  right: 16px; bottom: -10px;
  width: 40px; height: 40px;
  animation: whatsTap 1.25s ease-in-out infinite;
}
.whats-link .click-ring {
  left: 5px; top: 3px;
  width: 22px; height: 22px;
  background: rgba(255,255,255,.95);
  animation: whatsTapRing 1.25s ease-out infinite;
}
@keyframes whatsTap {
  0%, 100% { transform: translateY(0) scale(1); }
  30%      { transform: translateY(-12px) scale(1.08); }
  50%      { transform: translateY(0) scale(.8); }
  64%      { transform: translateY(0) scale(1); }
}
@keyframes whatsTapRing {
  0%, 48%  { transform: scale(.2); opacity: 0; }
  56%      { opacity: .9; }
  92%, 100%{ transform: scale(3.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whats-link, .whats-link .click-cursor, .whats-link .click-ring { animation: none; }
}
.form-success h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 8px; }
.form-success > p { color: var(--ink-soft); margin-bottom: 22px; }
.form-success #successName { color: var(--red); font-weight: 700; }
.link-reset {
  background: none; border: none; cursor: pointer;
  color: var(--ink-soft); font-size: .85rem; font-family: inherit;
  margin-top: 14px; text-decoration: underline;
}

.benefits { padding: 90px 0; background: var(--bg-alt); }
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; letter-spacing: -.5px;
}
.section-title::after {
  content: "";
  display: block;
  width: 70px; height: 4px;
  background: var(--red);
  border-radius: 4px;
  margin: 14px auto 0;
}
.section-sub { text-align: center; color: var(--ink-soft); max-width: 560px; margin: 16px auto 50px; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: var(--ease);
  box-shadow: var(--shadow);
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.card-ico {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  color: var(--red);
  background: rgba(232,63,66,.10);
  border-radius: 14px;
  margin-bottom: 16px;
}
.card-ico svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: .92rem; }

.reviews { padding: 90px 0; background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex; flex-direction: column;
  transition: var(--ease);
  box-shadow: var(--shadow);
}
.review:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: var(--shadow-blue); }
.stars { color: #ffb400; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { color: var(--ink-soft); font-size: .96rem; flex: 1; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--blue); }
.review-author strong { display: block; font-size: .95rem; color: var(--ink); }
.review-author span { font-size: .78rem; color: var(--gray); }

.final-cta {
  padding: 80px 0;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(20,22,43,.12), transparent 60%),
    var(--bg-alt);
}
.final-inner { text-align: center; }
.final-inner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 12px; }
.final-inner p { color: var(--ink-soft); margin-bottom: 28px; }
.final-form-card {
  max-width: 460px;
  margin: 0 auto;
  text-align: left;
}

.footer { background: var(--navy); padding: 44px 0; position: relative; }
.footer-wave {
  position: absolute; left: 0; right: 0; top: -89px; z-index: 1;
  line-height: 0; pointer-events: none;
}
.footer-wave svg { display: block; width: 100%; height: 90px; }
.footer-wave path { fill: var(--navy); }
.footer-inner { position: relative; z-index: 2; text-align: center; }
.footer-logo { width: 200px; max-width: 60%; margin: 0 auto 16px; opacity: .95; }
.footer-text { font-size: .85rem; color: rgba(255,255,255,.92); }
.footer-mini { font-size: .82rem; color: rgba(255,255,255,.75); margin-top: 4px; }

.whats-float {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 58px; height: 58px;
  background: var(--whats);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(37,211,102,.45);
  z-index: 60;
  animation: bob 2.4s ease-in-out infinite;
}
.whats-float svg { width: 30px; height: 30px; }
.whats-float:hover { transform: scale(1.08); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.stats {
  background: linear-gradient(180deg, var(--navy) 0%, var(--blue-dark) 60%, var(--blue) 100%);
  padding: 70px 0;
  position: relative;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 900; font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1; color: #fff;
}
.stat-label { font-size: .9rem; color: rgba(255,255,255,.9); }

.prizes { padding: 90px 0; background: var(--bg-alt); }
.prizes-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.prizes-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  box-shadow: var(--shadow-blue);
}
.prizes-media img {
  width: 100%; height: 340px;
  object-fit: cover; display: block;
}
.prizes-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff5f6; color: var(--red-dark);
  border: 1px solid var(--red-light);
  font-weight: 800; font-size: .82rem; letter-spacing: .3px;
  padding: 8px 16px; border-radius: 999px;
  margin-bottom: 16px;
}
.prizes-badge strong { color: var(--red); }
.prizes-copy > p { color: var(--ink-soft); margin: 18px 0 26px; max-width: 480px; }
.prizes-copy > p strong { color: var(--ink); }

.preview { padding: 90px 0; background: var(--bg); }
.preview-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.mini-tag {
  display: inline-block;
  color: var(--red); font-weight: 800;
  font-size: .78rem; letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-title.left { text-align: left; }
.section-title.left::after { margin-left: 0; }
.preview-copy > p { color: var(--ink-soft); margin: 18px 0 22px; max-width: 480px; }
.preview-copy > p strong { color: var(--ink); }
.preview-list { display: grid; gap: 11px; margin-bottom: 28px; }
.preview-list li { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.preview-list .check {
  flex: none; width: 24px; height: 24px;
  background: var(--blue); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
}
.preview-list .check svg { width: 15px; height: 15px; }

.phone {
  justify-self: center;
  width: 380px; max-width: 100%;
  background: #0b141a;
  border: 10px solid #050505;
  border-radius: 38px;
  padding: 0;
  box-shadow: 0 30px 70px rgba(20,26,34,.25), var(--shadow-blue);
  position: relative;
  overflow: hidden;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 22px; background: #050505; border-radius: 0 0 14px 14px;
  z-index: 3;
}
.chat { border-radius: 28px 28px 0 0; overflow: hidden; }
.chat-head {
  display: flex; align-items: center; gap: 11px;
  background: #1f2c34; padding: 36px 14px 12px;
}
.chat-avatar { width: 40px; height: 40px; border-radius: 50%; }
.chat-head-info { display: flex; flex-direction: column; line-height: 1.25; }
.chat-head-info strong { color: #fff; font-size: .95rem; }
.chat-head-info span { color: #8ba0ab; font-size: .76rem; display: flex; align-items: center; gap: 5px; }
.online-dot { width: 7px; height: 7px; background: var(--whats); border-radius: 50%; }

.chat-body {
  background:
    linear-gradient(rgba(11,20,26,.92), rgba(11,20,26,.92)),
    repeating-linear-gradient(45deg, #14222b 0 12px, #16252f 12px 24px);
  height: 520px; overflow: hidden;
}
.chat-feed {
  padding: 16px 12px 18px;
  display: flex; flex-direction: column; gap: 9px;
}
.chat-day {
  align-self: center;
  background: #1d2a33; color: #8ba0ab;
  font-size: .68rem; letter-spacing: .5px;
  padding: 4px 12px; border-radius: 8px;
  margin-bottom: 4px;
}
.msg {
  max-width: 82%;
  font-size: .84rem; line-height: 1.4;
  padding: 8px 11px 16px; border-radius: 10px;
  position: relative;
  color: #e9edef;
  animation: msgIn .5s ease both;
}
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.msg.in { align-self: flex-start; background: #1f2c34; border-top-left-radius: 3px; }
.msg.out { align-self: flex-end; background: #075e54; border-top-right-radius: 3px; }
.msg { overflow-wrap: anywhere; }
.msg s { color: #8ba0ab; }
.msg b { color: #fff; }
.msg-time { position: absolute; right: 9px; bottom: 4px; font-size: .62rem; color: #8ba0ab; }
.msg-badge {
  display: inline-block;
  background: var(--red); color: #fff;
  font-size: .64rem; font-weight: 800; letter-spacing: .5px;
  padding: 3px 8px; border-radius: 6px; margin-bottom: 6px;
}
.msg.offer { padding-bottom: 18px; }
.msg-img { width: 100%; border-radius: 8px; margin-bottom: 6px; background: #fff; }
.msg-offer-info { display: flex; align-items: center; gap: 8px; }
.msg-off { background: var(--red); color: #fff; font-weight: 800; font-size: .72rem; padding: 2px 7px; border-radius: 6px; }
.typing {
  align-self: flex-start;
  background: #1f2c34; border-radius: 10px; border-top-left-radius: 3px;
  padding: 11px 13px; display: flex; gap: 4px;
}
.typing span {
  width: 7px; height: 7px; background: #8ba0ab; border-radius: 50%;
  animation: typing 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.deals { padding: 90px 0 130px; background: var(--bg-alt); position: relative; }
.deals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.deal {
  background: #fff; color: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px; text-align: center;
  position: relative;
  transition: var(--ease);
  box-shadow: var(--shadow);
}
.deal:hover { transform: translateY(-8px); box-shadow: var(--shadow-blue); border-color: var(--blue); }
.deal-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--red); color: #fff;
  font-weight: 800; font-size: .82rem;
  padding: 5px 11px; border-radius: 8px;
}
.deal-img { height: 150px; display: grid; place-items: center; margin-bottom: 14px; }
.deal-img img { max-height: 150px; width: auto; object-fit: contain; }
.deal-img svg { width: 120px; height: 120px; color: #c4ccd8; }
.deal:hover .deal-img svg { color: var(--red); transition: color var(--ease); }
.deal h3 { font-size: 1.15rem; margin-bottom: 6px; }
.deal-price { margin-bottom: 16px; }
.deal-price s { color: #999; font-size: .9rem; margin-right: 6px; }
.deal-price b { color: var(--red); font-size: 1.4rem; font-weight: 800; }
.btn-outline {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

.deal-more {
  background: linear-gradient(160deg, var(--blue), var(--blue-dark));
  color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  text-align: center;
}
.deal-more:hover { box-shadow: 0 18px 50px rgba(20,22,43,.5); }
.more-plus {
  font-family: 'Poppins', sans-serif;
  font-size: 3.4rem; font-weight: 900; line-height: 1;
  margin-bottom: 6px;
}
.deal-more h3 { color: #fff; font-size: 1.35rem; margin-bottom: 10px; }
.more-text { color: rgba(255,255,255,.9); font-size: .92rem; margin-bottom: 18px; }
.deal-more .btn-primary { background: #fff; color: var(--blue); box-shadow: none; }
.deal-more .btn-primary:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 60px; }
  .form-wrap { order: 2; }
  .hero-copy { text-align: center; }
  .hero-actions { display: none; }
  .hero-perks { display: none; }
  .hero-actions { align-items: center; }
  .social-proof { justify-content: center; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .preview-inner { grid-template-columns: 1fr; gap: 44px; }
  .prizes-inner { grid-template-columns: 1fr; gap: 36px; }
  .section-title.left, .preview-copy, .prizes-copy { text-align: center; }
  .section-title.left::after { margin: 14px auto 0; }
  .preview-copy > p, .prizes-copy > p { margin-left: auto; margin-right: auto; }
  .preview-list { max-width: 320px; margin-left: auto; margin-right: auto; }
  .deals-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .brand-logo { height: 32px; }
  .nav { padding: 14px 18px; justify-content: center; }
  .nav-cta { display: none; }
  .hero-inner { padding: 28px 18px 80px; }
  .hero-copy h1 { letter-spacing: -.4px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .social-proof { justify-content: center; }
  .cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .deals-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px 22px; }
  .topbar { font-size: .72rem; }
  .whats-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .footer { padding: 40px 0 90px; }
  .footer-text { font-size: .8rem; line-height: 1.5; }
  .section-title, .final-inner h2 { letter-spacing: -.2px; }
  .btn, .btn-lg { font-size: .98rem; padding: 14px 22px; white-space: normal; }
}

/* Smartphones bem pequenos (iPhone SE, Galaxy A0x, etc.) */
@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .hero-inner { padding: 24px 14px 72px; }
  .hero-copy h1 { font-size: clamp(1.7rem, 8vw, 2.1rem); letter-spacing: -.2px; }
  .lead { font-size: 1rem; }
  .form-card { padding: 22px 16px; }
  .form-head h2 { font-size: 1.35rem; }
  .prize-card h2 { font-size: 1.15rem; }
  .stats-grid { gap: 22px; }
  .stat-label { font-size: .82rem; }
  .btn, .btn-lg { font-size: .92rem; padding: 14px 16px; }
  .deal-price b { font-size: 1.25rem; }
  .review-text { font-size: .92rem; }
  .modal { padding: 10px; padding-top: 16px; }
  .form-prize-imgs img { width: 78px; height: 78px; }
}

/* Popup de prova social (cadastros em tempo real) */
.signup-toast {
  position: fixed;
  left: 20px; bottom: 22px;
  z-index: 300; /* acima do modal (200) p/ aparecer por cima do popup */
  display: flex; align-items: center; gap: 12px;
  width: 320px; max-width: calc(100vw - 40px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 16px 44px rgba(20,22,43,.18);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.signup-toast.show { opacity: 1; transform: translateY(0); }
.signup-toast-avatar {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: .95rem; color: #fff;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
}
.signup-toast-body { flex: 1; min-width: 0; }
.signup-toast-name { font-size: .9rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.signup-toast-name b { color: var(--blue-dark); }
.signup-toast-meta { font-size: .76rem; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.signup-toast-meta::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--whats); flex: none;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  animation: pulseDot 1.8s infinite;
}
.signup-toast-check {
  flex: none; width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--whats); color: #fff;
  display: grid; place-items: center;
}
.signup-toast-check svg { width: 14px; height: 14px; }
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 7px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 560px) {
  .signup-toast {
    left: 12px; right: 80px; width: auto;
    top: auto; bottom: 16px;
    transform: translateY(16px);
  }
  .signup-toast.show { transform: translateY(0); }
}

/* Seção de lojas / mapa */
.stores { padding: 90px 0; background: var(--bg-alt); }
.map-wrap {
  margin-top: 36px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 44px rgba(20,22,43,.12);
}
#map { width: 100%; height: 520px; }
.map-gesture-hint {
  position: absolute; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,22,43,.55);
  color: #fff; font-weight: 700; font-size: 1.05rem; text-align: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
#map.show-hint .map-gesture-hint { opacity: 1; }
.leaflet-popup-content { font-family: 'Inter', system-ui, sans-serif; margin: 10px 12px; }
.map-popup-name { display: block; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.map-popup-addr { color: var(--gray); font-size: .85rem; }
@media (max-width: 560px) { #map { height: 420px; } }
.nearest { margin-top: 28px; text-align: center; }
.nearest-hint {
  font-weight: 700; color: var(--blue-dark);
  margin-bottom: 12px; font-size: 1rem;
}
.nearest-btn-wrap { position: relative; display: inline-block; }
.nearest .btn { display: inline-flex; align-items: center; gap: 9px; }

/* cursor de mouse animado "clicando" no botão */
.click-cursor {
  position: absolute;
  right: 8px; bottom: -10px;
  width: 30px; height: 30px;
  pointer-events: none;
  z-index: 3;
  animation: cursorTap 1.9s ease-in-out infinite;
}
.click-cursor svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 2px 3px rgba(20,22,43,.4));
}
.click-ring {
  position: absolute; left: 2px; top: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  transform: scale(0); opacity: 0;
  animation: cursorRing 1.9s ease-out infinite;
}
@keyframes cursorTap {
  0%, 38%, 100% { transform: translate(0, 0) scale(1); }
  48% { transform: translate(-7px, -9px) scale(1); }
  56% { transform: translate(-7px, -9px) scale(.78); }
  66% { transform: translate(-7px, -9px) scale(1); }
}
@keyframes cursorRing {
  0%, 50% { transform: scale(0); opacity: 0; }
  56% { opacity: .8; }
  85%, 100% { transform: scale(3.4); opacity: 0; }
}
.nearest-btn-wrap.cursor-done .click-cursor { display: none; }
@media (prefers-reduced-motion: reduce) {
  .click-cursor, .click-ring { animation: none; }
}
.nearest-result {
  margin: 18px auto 0;
  max-width: 560px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.nearest-result strong { color: var(--ink); }
.nearest-result .nearest-dist { color: var(--blue-dark); font-weight: 600; white-space: nowrap; }
.nearest-result.is-error { border-left-color: var(--red); color: var(--red-dark); }

/* Card de brinde no hero (no lugar do formulário) */
.prize-card { text-align: center; }
.prize-card-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff5f6; color: var(--red-dark);
  border: 1px solid var(--red-light);
  font-weight: 800; font-size: .82rem; letter-spacing: .3px;
  padding: 7px 15px; border-radius: 999px;
  margin-bottom: 16px;
}
.prize-imgs {
  position: relative;
  width: 130px; height: 150px;
  margin: 2px auto 8px;
}
.prize-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .6s ease;
}
.prize-card-img.is-active { opacity: 1; }
.prize-name {
  display: block; font-weight: 700; color: var(--blue-dark);
  font-size: .9rem; margin-bottom: 12px;
}
.prize-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem; font-weight: 800; color: var(--ink);
  margin-bottom: 8px;
}
.prize-card > p {
  color: var(--ink-soft); line-height: 1.45; font-size: .92rem;
  max-width: 320px; margin: 0 auto 18px;
}

/* Destaque do brinde dentro do formulário */
.form-prize {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #fff5f6, #fff);
  border: 1px solid var(--red-light);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  margin-bottom: 18px;
  text-align: center;
}
.form-prize img {
  width: 130px; height: 130px;
  object-fit: contain;
}
.form-prize-imgs {
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.form-prize-imgs img { width: 96px; height: 96px; object-fit: contain; }
.prize-or {
  flex: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: .8rem; text-transform: uppercase;
  color: var(--red-dark);
  background: #fff; border: 1px solid var(--red-light);
  border-radius: 999px; padding: 4px 10px;
}
.form-prize p {
  font-size: .9rem; line-height: 1.4; color: var(--ink-soft); margin: 0;
}
.form-prize strong { color: var(--red-dark); display: block; font-size: 1rem; }

/* Popup (modal) de cadastro */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,43,.62);
  backdrop-filter: blur(3px);
}
.modal-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 420px;
  max-height: 92vh; overflow-y: auto;
  animation: modalIn .25s ease;
}
.modal-card .form-card { width: 100%; margin: 0; }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute; top: 12px; right: 14px; z-index: 3;
  width: 36px; height: 36px; border: none; border-radius: 50%;
  background: rgba(20,22,43,.08); color: var(--ink);
  font-size: 22px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: var(--ease);
}
.modal-close:hover { background: rgba(20,22,43,.16); }
body.modal-locked { overflow: hidden; }

/* Indicador "desça a página" no popup após confirmar o cadastro */
.modal-scroll-hint {
  position: sticky; bottom: 12px;
  z-index: 4; pointer-events: none;
  width: max-content; max-width: 90%;
  margin: -52px auto 10px;
  display: none; align-items: center; gap: 7px;
  background: var(--whats); color: #fff;
  padding: 9px 16px; border-radius: 999px;
  font-size: .82rem; font-weight: 700; white-space: nowrap;
  box-shadow: 0 10px 26px rgba(37,211,102,.5);
  animation: scrollHintBounce 1.2s ease-in-out infinite;
}
.modal-scroll-hint svg { width: 18px; height: 18px; }
.modal-card.show-hint .modal-scroll-hint { display: flex; }
@keyframes scrollHintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .modal-scroll-hint { animation: none; }
}
@media (max-width: 560px) {
  .modal { padding: 14px; align-items: flex-start; padding-top: 24px; }
}
