/* Scan de Achados — high-conversion landing (mobile-first) */
:root {
  --bg: #fffaf6;
  --surface: #ffffff;
  --text: #1c1917;
  --muted: #57534e;
  --line: #f5e6d8;
  --primary: #ea580c;
  --primary-dark: #c2410c;
  --primary-soft: #ffedd5;
  --whatsapp: #16a34a;
  --shadow: 0 10px 30px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 20px 50px rgba(234, 88, 12, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1100px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Poppins", "Inter", system-ui, sans-serif;
  --sticky-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1100px 480px at 8% -8%, #ffedd5 0%, transparent 55%),
    radial-gradient(900px 420px at 100% 0%, #ccfbf1 0%, transparent 48%),
    var(--bg);
  line-height: 1.55;
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.container--narrow { width: min(100% - 2rem, 720px); }

/* Top bar */
.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  background: linear-gradient(90deg, #9a3412, #ea580c 45%, #c2410c);
  color: #fff;
  font-size: 0.84rem;
  text-align: center;
  font-weight: 500;
}
.topbar__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fef08a;
  box-shadow: 0 0 0 0 rgba(254, 240, 138, 0.7);
  animation: pulse 1.6s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(254, 240, 138, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(254, 240, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(254, 240, 138, 0); }
}

/* Brand bar (logo) */
.brandbar {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(245, 230, 216, 0.9);
  background: rgba(255, 250, 246, 0.72);
  backdrop-filter: blur(10px);
}
.brandbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}
.brand__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.22);
  background: #fff;
}
.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
  gap: 0.12rem;
}
.brand__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand__tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

@media (min-width: 768px) {
  .brand__logo {
    width: 64px;
    height: 64px;
  }
  .brand__name {
    font-size: 1.25rem;
  }
  .brand__tag {
    font-size: 0.88rem;
  }
}

/* Hero */
.hero { padding: 1.35rem 0 2.2rem; }
.hero__grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
.badge-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.95rem;
}
.badge {
  display: inline-flex; align-items: center;
  padding: 0.35rem 0.7rem; border-radius: 999px;
  font-size: 0.76rem; font-weight: 700;
}
.badge--live {
  background: #fff7ed; color: #c2410c; border: 1px solid #fdba74;
}
.badge--free {
  background: #ecfdf5; color: #047857; border: 1px solid #6ee7b7;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 6.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 0.95rem;
  font-weight: 900;
}
.text-gradient {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 42%, #0d9488 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: 1.04rem;
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 36rem;
}
.trust-list {
  list-style: none; padding: 0; margin: 0 0 1.25rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem;
  font-size: 0.92rem; font-weight: 600; color: #292524;
}
.hero__micro {
  margin: 0.8rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}
.hero__copy .hero__micro { text-align: left; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 1.25rem;
}
.stat {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem 0.5rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 0.98rem;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}
.stat span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.hero__visual { display: flex; justify-content: center; }
.hero__card {
  position: relative;
  width: min(100%, 400px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  border: 1px solid rgba(234, 88, 12, 0.12);
}
.hero__card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.float-tag {
  position: absolute;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  animation: float 3.5s ease-in-out infinite;
}
.float-tag--1 { top: 12px; left: 12px; color: #c2410c; }
.float-tag--2 { bottom: 14px; right: 12px; color: #0f766e; animation-delay: 0.8s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 14px;
  font-family: var(--font);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  line-height: 1.2;
}
.btn:active { transform: scale(0.98); }
.btn--primary {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 55%, #15803d 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}
.btn--xl {
  width: 100%;
  max-width: 420px;
  padding: 1.05rem 1.2rem;
  font-size: 1.02rem;
}
.btn--lg {
  width: 100%;
  max-width: 380px;
  padding: 0.95rem 1.15rem;
  font-size: 1rem;
}
.btn--sticky {
  width: auto;
  min-width: 132px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  border-radius: 12px;
  flex-shrink: 0;
}
.btn__icon { display: inline-flex; flex-shrink: 0; }

/* Stores */
.stores { padding: 0.25rem 0 1.4rem; }
.stores__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}
.stores__logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.45rem;
}
.store-pill {
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}
.store-pill--shopee { background: #fff1f2; color: #e11d48; }
.store-pill--amazon { background: #fffbeb; color: #b45309; }
.store-pill--ml { background: #fff7ed; color: #c2410c; }
.store-pill--magalu { background: #eff6ff; color: #1d4ed8; }

/* Sections */
.section { padding: 2.5rem 0; }
.section__head { text-align: center; margin-bottom: 1.5rem; }
.eyebrow {
  display: inline-block;
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section__head h2,
.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 4.4vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
}
.section__sub {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--muted);
}
.center-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
  gap: 0.25rem;
}

/* Carousel / proofs */
.proof {
  background: linear-gradient(180deg, transparent, rgba(255, 237, 213, 0.5), transparent);
}
.carousel { position: relative; }
.carousel__track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1rem;
  padding: 0.25rem 1rem 0.75rem;
  margin-inline: -1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.proof-card {
  margin: 0;
  flex: 0 0 min(78vw, 300px);
  scroll-snap-align: center;
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(28, 25, 23, 0.12);
  box-shadow: var(--shadow);
}
.proof-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  background: #1c1917;
}
.proof-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.7rem 0.8rem 0.85rem;
  background: #fff;
}
.proof-card__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.proof-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.9rem;
}
.proof-card__price s { color: #a8a29e; font-size: 0.82rem; }
.proof-card__price b {
  color: #15803d;
  font-family: var(--display);
  font-size: 1.1rem;
}
.proof-card__price em {
  font-style: normal;
  background: #dcfce7;
  color: #166534;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
}
.carousel__dots button {
  width: 7px; height: 7px; border-radius: 50%;
  border: none; padding: 0;
  background: #d6d3d1;
  cursor: pointer;
}
.carousel__dots button.is-active {
  background: var(--primary);
  width: 18px;
  border-radius: 999px;
}
.carousel__hint {
  text-align: center;
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: #a8a29e;
  font-weight: 600;
}
.proof__warn {
  text-align: center;
  margin: 1.1rem 0 0;
  font-weight: 700;
  color: #9a3412;
  font-size: 0.92rem;
}

/* Deals */
.deals__grid {
  display: grid;
  gap: 0.75rem;
}
.deal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem 1.1rem;
  box-shadow: var(--shadow);
}
.deal-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.deal-card__tag--hot { background: #fee2e2; color: #b91c1c; }
.deal-card__tag--flash { background: #ffedd5; color: #c2410c; }
.deal-card__tag--gone { background: #fce7f3; color: #be185d; }
.deal-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  line-height: 1.25;
}
.deal-card__prices {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem 0.6rem;
}
.price-old {
  text-decoration: line-through;
  color: #a8a29e;
  font-size: 0.92rem;
}
.price-new {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #15803d;
}
.deal-card__save {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* Benefits */
.benefits__grid { display: grid; gap: 0.75rem; }
.benefit {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}
.benefit__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--primary-soft);
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}
.benefit h3 { margin: 0 0 0.3rem; font-size: 1.02rem; }
.benefit p { margin: 0; color: var(--muted); font-size: 0.93rem; }

/* Steps */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0.75rem;
}
.step {
  display: flex; gap: 0.85rem; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
  box-shadow: var(--shadow);
}
.step__num {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; flex-shrink: 0;
  font-weight: 900; color: #fff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  font-family: var(--display);
}
.step h3 { margin: 0 0 0.2rem; font-size: 1.02rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.93rem; }

/* FAQ */
.faq__list { display: grid; gap: 0.6rem; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.15rem 1rem;
  box-shadow: var(--shadow);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding: 0.9rem 1.4rem 0.9rem 0;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 800;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Final CTA */
.final-cta { padding-top: 0.75rem; }
.final-cta__box {
  text-align: center;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 40%, #ccfbf1 100%);
  border: 1px solid rgba(234, 88, 12, 0.18);
  border-radius: 24px;
  padding: 2rem 1.2rem;
  box-shadow: var(--shadow-lg);
}
.final-cta__box p { color: var(--muted); margin: 0 0 1.15rem; }
.final-cta__box .btn { margin-inline: auto; }
.final-cta__box .hero__micro { text-align: center; }

/* Footer */
.footer {
  padding: 2.4rem 0 2rem;
  color: var(--muted);
  font-size: 0.86rem;
}
.footer__inner { display: grid; gap: 0.7rem; }
.footer__brand {
  margin: 0;
  font-weight: 800;
  color: var(--text);
  font-family: var(--display);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.footer__brand img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}
.footer__note { margin: 0; max-width: 40rem; }
.footer__nav { display: flex; gap: 1rem; }
.footer__nav a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}
.footer__nav a:hover { text-decoration: underline; }
.legal {
  margin-top: 0.4rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}
.legal h3 {
  margin: 0 0 0.3rem;
  font-size: 0.92rem;
  color: var(--text);
}
.legal p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 250, 246, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 24px rgba(28, 25, 23, 0.08);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 560px;
  margin: 0 auto;
}
.sticky-cta__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.sticky-cta__text strong {
  font-size: 0.9rem;
  line-height: 1.2;
}
.sticky-cta__text span {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Desktop */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .hero { padding: 2.75rem 0 3.25rem; }
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.4rem;
  }
  .btn--xl, .btn--lg { width: auto; }
  .deals__grid { grid-template-columns: repeat(3, 1fr); }
  .benefits__grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .step { flex-direction: column; }
  .stores__inner {
    flex-direction: row;
    justify-content: center;
  }
  .proof-card { flex-basis: 280px; }
  .carousel__track {
    padding-inline: 0;
    margin-inline: 0;
    scroll-padding-inline: 0;
  }
  .final-cta__box { padding: 2.6rem 2rem; }
  .sticky-cta { display: none; }
  .hero__card { width: 420px; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .topbar__pulse, .float-tag { animation: none; }
  .sticky-cta { transition: none; }
}
