/* ============================================
   Viralify — VSL Static
   Variables, reset, base typography, components
   ============================================ */

:root {
  --c-orange: #F97316;
  --c-orange-deep: #EA580C;
  --c-orange-soft: #FFF1E6;
  --c-blue: #377cf4;
  --c-blue-deep: #1d4ed8;
  --c-blue-bright: #0082ff;
  --c-ink: #050913;
  --c-ink-soft: #1a1a1a;
  --c-muted: #6b7280;
  --c-muted-2: #9ca3af;
  --c-line: #e5e7eb;
  --c-bg-vsl: #0a0a0a;
  --c-bg-card: #080F1E;
  --c-bg-soft: #FAFAFB;
  --c-white: #ffffff;
  --grad-orange: linear-gradient(90deg, #F97316, #EA580C);
  --shadow-card: 0 8px 30px hsla(222,47%,17%,0.3);
  --shadow-glow: 0 0 20px hsla(25,100%,50%,0.5), 0 0 40px hsla(25,100%,50%,0.25);
  --shadow-glow-hover: 0 0 25px hsla(25,100%,50%,0.6), 0 0 50px hsla(25,100%,50%,0.3);
  --font: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --container: 1100px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
html, body { overscroll-behavior: none; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-ink);
  background: var(--c-bg-vsl);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.grad-orange-text {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================
   VSL HERO (dark)
   ============================================ */
.vsl-page { min-height: 100vh; display: flex; flex-direction: column; background: var(--c-bg-vsl); }
.vsl-hero { padding: 24px 16px 16px; flex: 1; display: flex; justify-content: center; }
.vsl-hero__inner { width: 100%; max-width: 700px; text-align: center; }
.vsl-preheadline {
  font-size: 14px;
  color: var(--c-muted-2);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.vsl-headline {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.vsl-subheadline {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 18px;
}
.vsl-video {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}
.vsl-video vturb-smartplayer { display: block; width: 100%; }

@media (max-width: 767px) {
  .vsl-video {
    transform: scale(0.86);
    transform-origin: top center;
    margin-bottom: -28%;
  }
}

@media (min-width: 768px) {
  .vsl-hero { padding: 32px 20px 24px; align-items: center; }
  .vsl-preheadline { font-size: 15px; margin-bottom: 12px; }
  .vsl-headline { font-size: 42px; line-height: 1.15; margin-bottom: 14px; }
  .vsl-subheadline { font-size: 22px; margin-bottom: 24px; }
}

/* ============================================
   PRICING SECTION (white background)
   ============================================ */
.pricing { display: none; background: var(--c-white); color: var(--c-ink); }
.pricing.is-visible { display: block; animation: fadeIn 0.5s ease-out; }

.pricing__head {
  padding: 40px 20px 24px;
  text-align: center;
}
.pricing__head h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--c-ink);
  margin-bottom: 14px;
}
.pricing__head p {
  font-size: 14px;
  color: #8a8a8a;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing__head { padding: 56px 24px 28px; }
  .pricing__head h2 { font-size: 44px; }
  .pricing__head p { font-size: 17px; }
}

/* ---------- Marquee social proof ---------- */
.marquee {
  overflow: hidden;
  padding: 4px 0 40px;
  background: var(--c-white);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: hsl(220,15%,15%);
  border: 1px solid hsl(220,10%,25%);
  border-radius: 14px;
  padding: 12px 18px;
  flex-shrink: 0;
}
.marquee__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.marquee__handle {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}
.marquee__niche {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: hsl(220,10%,25%);
  color: hsl(0,0%,70%);
  white-space: nowrap;
}
.marquee__result {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.marquee__top { display: flex; align-items: center; gap: 6px; margin-bottom: 2px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Card PLUS ---------- */
.card-section { padding: 8px 20px 24px; background: var(--c-white); }
.card-plus {
  max-width: 460px;
  margin: 0 auto;
  background: var(--c-bg-card);
  color: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.card-plus__name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.card-plus__desc {
  font-size: 14px;
  color: hsl(215,20%,65%);
  margin-bottom: 22px;
}
.card-plus__price-old {
  font-size: 13px;
  color: hsl(215,20%,50%);
  text-decoration: line-through;
}
.card-plus__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.card-plus__price {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.card-plus__per {
  font-size: 17px;
  color: hsl(215,20%,65%);
}
.card-plus__badge-off {
  font-size: 11px;
  font-weight: 800;
  background: var(--grad-orange);
  color: #fff;
  padding: 3px 9px;
  border-radius: 999px;
}
.card-plus__daily {
  font-size: 13px;
  color: hsl(215,20%,50%);
  margin-bottom: 22px;
}
.card-plus__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.card-plus__feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: hsl(215,20%,80%);
  line-height: 1.45;
}
.card-plus__feat-check {
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px; height: 18px;
  color: hsl(215,20%,75%);
}
.card-plus__feat strong { color: #fff; font-weight: 700; }
.card-plus__cta {
  display: block;
  width: 100%;
  text-align: center;
  background: hsl(25,100%,50%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-glow);
  transition: all 0.25s ease;
}
.card-plus__cta:hover {
  background: hsl(25,100%,45%);
  box-shadow: var(--shadow-glow-hover);
}
@media (hover: hover) { .card-plus__cta:hover { transform: scale(1.02); } }
.card-plus__cta:active { transform: scale(0.97); }

.card-plus__trust {
  text-align: center;
  font-size: 13px;
  color: #999;
  margin-top: 22px;
}

/* ---------- Info Tooltip ---------- */
.tt-wrap { display: inline-flex; align-items: center; margin-left: 5px; vertical-align: middle; }
.tt-btn {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.tt-btn:hover { color: #fff; }
.tt-pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  max-width: calc(100vw - 16px);
  background: hsl(229,84%,8%);
  color: #fff;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.45;
  padding: 10px 12px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, visibility 0.18s;
  z-index: 9999;
}
.tt-wrap.is-open .tt-pop {
  opacity: 1;
  visibility: visible;
}

/* ---------- Garantia ---------- */
.guarantee {
  padding: 56px 20px;
  background: var(--c-bg-soft);
}
.guarantee__inner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--c-blue-deep);
  border-radius: 22px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.guarantee__seal { width: 112px; height: 112px; flex-shrink: 0; }
.guarantee__title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.guarantee__text { font-size: 16px; line-height: 1.5; color: rgba(255,255,255,0.92); }
.guarantee__text strong { color: #fff; }
.guarantee__email { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 8px; }
@media (min-width: 768px) {
  .guarantee__inner { flex-direction: row; padding: 36px; gap: 32px; text-align: left; }
  .guarantee__seal { width: 144px; height: 144px; }
  .guarantee__title { font-size: 28px; }
  .guarantee__text { font-size: 18px; }
}

/* ---------- Results carousel ---------- */
.results { padding: 48px 0 56px; background: var(--c-white); }
.results__title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--c-ink);
  margin: 0 20px 32px;
}
@media (min-width: 768px) { .results__title { font-size: 32px; margin-bottom: 40px; } }

/* Mobile: 1 card centralizado, pontas dos vizinhos como dica visual */
.results__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 12vw 14px;
  scrollbar-width: none;
}
.results__track::-webkit-scrollbar { display: none; }
.results__card {
  flex: 0 0 76vw;
  max-width: 320px;
  scroll-snap-align: center;
  background: #fff;
  border: 1px solid hsl(220,15%,90%);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* Desktop: vira marquee em loop infinito (CSS animation), centralizado, fade nas bordas */
@media (min-width: 768px) {
  .results__marquee {
    max-width: 1080px;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
  .results__track {
    overflow: visible;
    width: max-content;
    padding: 4px 0 18px;
    gap: 16px;
    scroll-snap-type: none;
    animation: marquee-results 60s linear infinite;
  }
  .results__marquee:hover .results__track { animation-play-state: paused; }
  .results__card { flex: 0 0 260px; }
  .results__dots { display: none; }
}

@keyframes marquee-results {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.results__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 12px 4px;
}
.results__avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.results__handle { font-size: 13px; font-weight: 700; color: var(--c-ink); line-height: 1.2; }
.results__niche { font-size: 12px; color: hsl(229,10%,50%); margin-left: 4px; }
.results__tag {
  display: inline-block;
  margin: 4px 12px 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8f0fe;
  color: #0052cc;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.3;
  align-self: flex-start;
}
.results__thumb { width: 100%; height: auto; display: block; }
.results__text {
  padding: 10px 12px 14px;
  font-size: 13px;
  line-height: 1.4;
  color: hsl(229,10%,30%);
  flex: 1;
}
.results__text strong { color: var(--c-ink); }

.results__dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.results__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: hsl(220,15%,85%);
  transition: all 0.3s;
}
.results__dot.is-active { background: var(--c-orange); transform: scale(1.4); }

/* ---------- FAQ ---------- */
.faq { padding: 48px 20px 56px; background: var(--c-white); }
.faq__title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--c-ink);
  margin-bottom: 32px;
}
.faq__title em { font-style: normal; }
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: #F5F6F8;
  border-radius: 14px;
  padding: 4px 18px;
  transition: background 0.25s, box-shadow 0.25s;
}
.faq__item[open] { background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,0.07); }
.faq__item summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__q-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--c-blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq__q { font-size: 15px; font-weight: 600; color: hsl(0,0%,10%); flex: 1; line-height: 1.35; }
.faq__chevron {
  width: 18px; height: 18px;
  color: hsl(0,0%,40%);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__a {
  padding: 0 0 18px 42px;
  font-size: 14px;
  line-height: 1.6;
  color: hsl(0,0%,40%);
}
@media (min-width: 768px) {
  .faq__title { font-size: 32px; }
  .faq__q { font-size: 16px; }
  .faq__a { font-size: 15px; }
}

/* ---------- Footer ---------- */
.vsl-footer-dark {
  background: linear-gradient(to bottom, #111, #0f0f0f 60%);
  padding: 50px 16px 24px;
  text-align: center;
}
.vsl-footer-dark p { font-size: 13px; color: #666; }
.vsl-footer-dark a { font-size: 12px; color: #555; transition: color 0.2s; }
.vsl-footer-dark a:hover { color: #888; }
.vsl-footer-dark__legal { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 8px; }
.vsl-footer-dark__sep { color: #333; }

.vsl-footer-light {
  padding: 28px 16px;
  background: var(--c-white);
  text-align: center;
}
.vsl-footer-light p { font-size: 13px; color: #888; }
.vsl-footer-light a { font-size: 12px; color: #777; transition: color 0.2s; }
.vsl-footer-light a:hover { color: #444; }
.vsl-footer-light__legal { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 8px; }
.vsl-footer-light__sep { color: #bbb; }

/* ============================================
   LEGAL PAGES (Termos, Política)
   ============================================ */
.legal-page { min-height: 100vh; display: flex; flex-direction: column; background: #fff; }
.legal-page main { flex: 1; }
.legal-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--c-line);
}
.legal-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.legal-header__logo { height: 22px; }
.legal-header__signin {
  background: hsl(217,90%,60%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 10px;
  transition: background 0.2s;
}
.legal-header__signin:hover { background: hsl(217,90%,50%); }

.legal-article {
  max-width: 740px;
  margin: 0 auto;
  padding: 56px 20px 80px;
}
.legal-article h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  color: hsl(229,84%,5%);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.legal-article__updated { font-size: 14px; color: hsl(229,10%,50%); margin-bottom: 36px; }
.legal-article section { margin-bottom: 32px; }
.legal-article h2 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  color: hsl(229,84%,5%);
  margin-bottom: 12px;
}
.legal-article p, .legal-article li {
  font-size: clamp(15px, 1.8vw, 17px);
  color: hsl(229,10%,30%);
  line-height: 1.8;
}
.legal-article p + p { margin-top: 10px; }
.legal-article ul {
  list-style: disc;
  padding-left: 22px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-article a { color: var(--c-blue); }
.legal-article a:hover { text-decoration: underline; }
.legal-intro { margin-bottom: 28px; }

/* Full footer (FooterSimple) */
.footer-full {
  background: #111;
  color: #fff;
  padding: 50px 24px 22px;
}
.footer-full__inner { max-width: var(--container); margin: 0 auto; }
.footer-full__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .footer-full__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
}
.footer-full__brand-logo { height: 26px; margin-bottom: 14px; }
.footer-full__tagline { font-size: 14px; line-height: 1.55; color: hsl(0,0%,60%); max-width: 320px; margin-bottom: 18px; }
.footer-full__socials { display: flex; gap: 10px; }
.footer-full__social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-full__social:hover { background: rgba(255,255,255,0.2); }
.footer-full__col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 16px;
}
.footer-full__col h4::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-blue);
  margin-bottom: 14px;
}
.footer-full__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-full__col a {
  font-size: 14px;
  color: hsl(0,0%,60%);
  transition: color 0.2s;
}
.footer-full__col a:hover { color: #fff; }
.footer-full__bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  text-align: center;
}
.footer-full__copy { font-size: 13px; color: hsl(0,0%,45%); }

/* ============================================
   SUCCESS PAGE
   ============================================ */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--c-ink-soft);
}
.success-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 20px 80px;
}
.success-logo { height: 32px; margin-bottom: 32px; }
.success-check {
  width: 80px; height: 80px;
  color: #10b981;
  margin-bottom: 20px;
}
.success-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--c-ink-soft);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 12px;
}
.success-sub {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-bottom: 36px;
}
.success-sub strong { color: var(--c-ink-soft); font-weight: 600; }
.success-card {
  width: 100%;
  max-width: 440px;
  background: #f5f5f5;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.success-card__title { font-size: 17px; font-weight: 700; color: var(--c-ink-soft); margin-bottom: 12px; }
.success-card__text { font-size: 14px; line-height: 1.6; color: #444; margin-bottom: 18px; }
.success-card__text strong { color: var(--c-ink-soft); font-weight: 700; }
.success-warn {
  background: #FFF8E1;
  border-left: 4px solid #DC2626;
  padding: 12px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1F2937;
  text-align: left;
  margin-bottom: 20px;
}
.success-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--grad-orange);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 10px;
  transition: filter 0.2s, transform 0.1s;
}
.success-cta:hover { filter: brightness(1.06); }
.success-cta:active { transform: scale(0.97); }
.success-trust {
  margin-top: 32px;
  font-size: 13px;
  color: #999;
  text-align: center;
}
.success-trust a { color: #999; text-decoration: underline; }

@media (min-width: 768px) {
  .success-main { padding: 96px 20px 96px; }
  .success-title { font-size: 38px; }
  .success-sub { font-size: 18px; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
