:root {
  --ink: #17332c;
  --ink-2: #5b706a;
  --cream: #fbfaf5;
  --green: #0f8f63;
  --green-dark: #08734f;
  --mint: #dff4e9;
  --yellow: #f4cd69;
  --coral: #ff8b6a;
  --line: #e2ece7;
  --app-w: 440px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2 { margin: 0; font-family: "Manrope", sans-serif; letter-spacing: -.04em; }
ul { margin: 0; padding: 0; list-style: none; }

/* mobile-first single screen; centered column on desktop */
.app {
  width: min(100%, var(--app-w));
  min-height: 100svh;
  margin-inline: auto;
  padding: 12px 16px 9px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--cream);
}

.app-bar { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 9px; font: 800 18px/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.brand-mark { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 11px 11px 11px 3px; color: #fff; background: var(--green); font: 800 16px/1 "Manrope", sans-serif; transform: rotate(-3deg); }
.brand-plus { color: var(--coral); }
.live-tag { display: inline-flex; align-items: center; gap: 7px; padding: 6px 11px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--green-dark); font-size: 11px; font-weight: 700; }
.live-tag i { width: 7px; height: 7px; border-radius: 50%; background: #2fbb7d; box-shadow: 0 0 0 4px rgba(47,187,125,.16); }

main { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 11px; }

/* hero */
.hero-card {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 19px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #12503c, #0b7a53);
  box-shadow: 0 18px 40px rgba(12, 76, 55, .22);
}
.hero-photo {
  position: absolute;
  right: -16%;
  top: 0;
  width: 68%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  opacity: .55;
  mask-image: linear-gradient(100deg, transparent 8%, #000 62%);
}
.hero-text { position: relative; max-width: 78%; }
.eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #ffe6a8; }
.eyebrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); }
.hero-card h1 { margin: 9px 0 0; font-size: clamp(23px, 6.5vw, 27px); font-weight: 800; line-height: 1.12; }
.hero-card p { margin: 8px 0 0; max-width: 27ch; color: #cfe8dc; font-size: 12.5px; line-height: 1.45; }
.income-banner { width: max-content; max-width: 100%; display: flex; flex-direction: column; margin-top: 12px; padding: 9px 12px; border: 1px solid rgba(255,230,168,.48); border-radius: 13px; color: #17332c; background: linear-gradient(135deg, #ffe89d, #f4cd69); box-shadow: 0 10px 22px rgba(38,34,8,.2); }
.income-banner small { color: #795b12; font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.income-banner strong { margin-top: 2px; font: 800 16px/1.2 "Manrope", sans-serif; }
.income-banner span { margin-top: 3px; color: #6f5718; font-size: 9.5px; font-weight: 700; }

/* plataformas */
.platforms { position: relative; }
.platforms h2 { font-size: 16px; font-weight: 800; text-align: center; }
.platform-intro { max-width: 40ch; margin: 6px auto 0; color: var(--ink-2); font-size: 10.5px; line-height: 1.4; text-align: center; }
.logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 11px; }
.logo-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 5px 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(31, 75, 61, .05);
}
.logo { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; }
.logo svg { width: 100%; height: 100%; }
.logo img { width: 100%; height: 100%; object-fit: contain; border-radius: inherit; }
.logo-shopee { background: #ee4d2d; }
.logo-temu { background: #ff6a00; }
.logo-mercado { background: #ffe600; }
.logo-shein { background: #000; }
.logo-tiktok { background: #111; }
.logo-amazon { background: #ff9900; }
.logo-grid b { font: 700 11.5px/1.2 "Manrope", sans-serif; text-align: center; }

/* chips */
.chips { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; }
.chips li { display: inline-flex; align-items: center; gap: 4px; padding: 5px 9px; border-radius: 999px; background: var(--mint); color: var(--green-dark); font-size: 10.5px; font-weight: 700; white-space: nowrap; }
.chips span { font-size: 10px; }

/* rodapé + CTA */
.app-foot { display: flex; flex-direction: column; gap: 6px; }
.cta {
  position: relative;
  overflow: hidden;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, #13a768, #08794f);
  box-shadow: 0 14px 30px rgba(9, 118, 79, .3);
  font: 800 16px/1 "Manrope", sans-serif;
  transition: transform .2s, box-shadow .2s;
}
.cta svg { width: 24px; fill: currentColor; }
.cta::after { content: ""; position: absolute; top: -50%; left: -40%; width: 46px; height: 200%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent); transform: rotate(18deg); animation: shine 3s ease-in-out infinite; }
.cta:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(9, 118, 79, .36); }
.foot-note { margin: 0; text-align: center; color: var(--ink-2); font-size: 11px; }
.legal { margin: 0; color: #8b9a94; font-size: 8.5px; line-height: 1.4; text-align: center; }
.disclaimer { margin: 1px 0 0; padding-top: 6px; border-top: 1px solid var(--line); color: #8b9a94; font-size: 7.8px; line-height: 1.4; text-align: center; }

@keyframes shine { 0%, 62% { left: -40%; } 88%, 100% { left: 118%; } }

/* atalho do WhatsApp no lado direito da área central */
.mid-whatsapp { position: absolute; right: -8px; top: 4px; z-index: 4; }
.mid-whatsapp > span { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.wa-float {
  position: relative;
  right: auto;
  bottom: auto;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #0e9f56);
  box-shadow: 0 12px 26px rgba(9, 118, 79, .38);
  z-index: 1;
  animation: waBounce 2.4s ease-in-out infinite;
}
.wa-float svg { width: 32px; fill: currentColor; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .55);
  animation: waRing 2.4s ease-out infinite;
}
.wa-float:active { transform: scale(.95); }

@keyframes waBounce {
  0%, 58%, 100% { transform: translateY(0); }
  68% { transform: translateY(-10px); }
  78% { transform: translateY(0); }
  86% { transform: translateY(-5px); }
  94% { transform: translateY(0); }
}
@keyframes waRing {
  0% { transform: scale(1); opacity: .8; }
  70%, 100% { transform: scale(1.6); opacity: 0; }
}

/* PC: coluna centralizada com moldura suave */
@media (min-width: 720px) {
  body { background: radial-gradient(1200px 600px at 50% -10%, #eef7f1, var(--cream)); }
  .app {
    min-height: 0;
    height: min(96svh, 900px);
    margin-block: max(2svh, 16px);
    padding: 22px 24px 24px;
    border: 1px solid var(--line);
    border-radius: 34px;
    box-shadow: 0 30px 80px rgba(31, 75, 61, .14);
  }
  .hero-card h1 { font-size: 33px; }
  .mid-whatsapp { right: -10px; top: 5px; }
  .wa-float { right: auto; bottom: auto; width: 54px; height: 54px; flex-basis: 54px; }
  .wa-float svg { width: 32px; }
}

/* telas muito baixas: aperta o espaçamento para caber em uma tela */
@media (max-height: 700px) {
  .app { gap: 12px; padding-top: 12px; }
  main { gap: 12px; }
  .hero-card { padding: 18px 18px 20px; }
  .hero-card h1 { font-size: 25px; }
  .logo-grid li { padding: 10px 6px 9px; }
  .logo { width: 36px; height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
