/* =============================================================
   Tabloide.pro — Landing Page design system (shared across /p)
   Register: brand · Strategy: Committed red · Lane: flyer-meta retail
   Motion: tabloide-motion (CSS-only, mobile-first, 60fps)
   ============================================================= */

:root {
  /* Brand palette */
  --tp-red:        #e60000;
  --tp-red-deep:   #b80000;
  --tp-red-soft:   #fff2f2;
  --tp-black:      #111111;
  --tp-ink:        #1a1a1a;
  --tp-white:      #ffffff;
  --tp-yellow:     #feb800;
  --tp-yellow-soft:#fff3d0;
  --tp-green:      #1f9d57;
  --tp-green-soft: #e8f8ef;
  --tp-gray-50:    #fafafa;
  --tp-gray-100:   #f4f4f5;
  --tp-gray-200:   #e6e6e8;
  --tp-gray-400:   #b3b3b8;
  --tp-gray-600:   #555560;
  --tp-gray-700:   #3a3a42;
  --tp-paper:      #fdfbfb;
  --tp-paper-band: #f5f2f2;

  /* Type */
  --tp-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --tp-body:    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Radii */
  --tp-r-sm: 8px;
  --tp-r-md: 12px;
  --tp-r-lg: 18px;
  --tp-r-xl: 26px;
  --tp-r-pill: 999px;

  /* Shadows (filter-friendly, mobile-safe) */
  --tp-sh-card:  0 1px 2px rgb(17 17 17 / 6%), 0 10px 28px rgb(17 17 17 / 8%);
  --tp-sh-red:   0 12px 30px rgb(230 0 0 / 24%);
  --tp-sh-float: 0 24px 60px rgb(17 17 17 / 16%);

  /* Layout */
  --tp-wrap: 1140px;
  --tp-gut: clamp(20px, 4vw, 44px);

  /* === MOTION TOKENS (tabloide-motion) === */
  --tp-dur-instant: 80ms;
  --tp-dur-quick: 150ms;
  --tp-dur-base: 250ms;
  --tp-dur-slow: 400ms;
  --tp-dur-deliberate: 600ms;
  --tp-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --tp-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --tp-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =====================  Reset  ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--tp-body);
  font-weight: 400;
  font-size: clamp(15px, 1vw + 0.55rem, 17px);
  line-height: 1.6;
  color: var(--tp-ink);
  background: var(--tp-white);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--tp-display);
  font-weight: 800;
  color: var(--tp-black);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--tp-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =====================  Layout  ===================== */
.wrap { width: 100%; max-width: var(--tp-wrap); margin-inline: auto; padding-inline: var(--tp-gut); }
.wrap-narrow { max-width: 800px; }
section { padding-block: clamp(56px, 8vw, 100px); }
.section-head { max-width: 720px; margin: 0 auto clamp(32px, 5vw, 52px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tp-red);
  margin-bottom: 12px;
}
.section-label.on-dark { color: var(--tp-yellow); }
h2.section-title { font-size: clamp(1.7rem, 2.6vw + 0.6rem, 2.8rem); }
.section-head p { margin-top: 14px; color: var(--tp-gray-600); font-size: 1.05rem; }

/* =====================  Buttons  ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 30px;
  border-radius: var(--tp-r-md);
  font-family: var(--tp-display);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  text-align: center;
  transition: transform var(--tp-dur-quick) var(--tp-ease-out),
              box-shadow var(--tp-dur-quick) var(--tp-ease-out),
              background var(--tp-dur-quick) var(--tp-ease-out),
              color var(--tp-dur-quick) var(--tp-ease-out);
}
.btn-primary { background: var(--tp-red); color: var(--tp-white); box-shadow: var(--tp-sh-red); }
.btn-primary:hover { transform: translate3d(0,-2px,0) scale(1.015); background: var(--tp-red-deep); }
.btn-primary:active { transform: translate3d(0,0,0) scale(0.99); transition-duration: var(--tp-dur-instant); }
.btn-ghost { background: transparent; color: var(--tp-black); border-color: var(--tp-gray-200); }
.btn-ghost:hover { border-color: var(--tp-black); background: var(--tp-black); color: var(--tp-white); }
.btn-yellow { background: var(--tp-yellow); color: var(--tp-black); box-shadow: 0 10px 26px rgb(254 184 0 / 32%); }
.btn-yellow:hover { transform: translate3d(0,-2px,0) scale(1.015); background: #ffce4d; }
.btn-on-dark { background: var(--tp-white); color: var(--tp-red); }
.btn-on-dark:hover { transform: translate3d(0,-2px,0) scale(1.015); background: var(--tp-yellow); color: var(--tp-black); }
.btn-lg { padding: 19px 40px; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* =====================  Logo lockup (canonical)  ===================== */
.logo-lockup { display: inline-flex; align-items: center; gap: 10px; line-height: 1; color: var(--tp-black); text-decoration: none; }
.logo-lockup img { width: 36px; height: 36px; display: block; }
.logo-lockup .wordmark { font-family: var(--tp-display); font-weight: 700; font-size: 1.22rem; letter-spacing: -0.02em; color: var(--tp-black); }
.logo-lockup .wordmark em { font-style: normal; color: var(--tp-red); }

/* =====================  Logo bar (nav)  ===================== */
.logo-bar {
  position: sticky; top: 0; z-index: 50;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--tp-gray-200);
}
.logo-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 13px; }
.logo-bar .btn { padding: 11px 20px; font-size: 0.92rem; }
@media (max-width: 600px) { .logo-bar .nav-cta-text { display: none; } }

/* =====================  Trust strip  ===================== */
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 24px; }
.trust-row.center { justify-content: center; }
.trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; font-weight: 600; color: var(--tp-gray-700); }
.trust-item svg { width: 18px; height: 18px; color: var(--tp-green); flex-shrink: 0; }

/* =====================  Hero  ===================== */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--tp-white), var(--tp-paper)); padding-block: clamp(40px, 6vw, 80px); }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr); gap: clamp(32px,5vw,72px); align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--tp-red); padding: 6px 14px; border: 1.5px solid var(--tp-red);
  border-radius: var(--tp-r-pill); background: rgb(230 0 0 / 6%); margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.1rem, 4.6vw + 0.4rem, 3.6rem); line-height: 1.04; letter-spacing: -0.03em; }
.hero h1 .accent { color: var(--tp-red); }
.hero h1 .mark { background: linear-gradient(180deg, transparent 56%, var(--tp-yellow-soft) 56%); padding: 0 4px; }
.hero-sub { margin-top: 20px; font-size: clamp(1.02rem, 0.4vw + 0.9rem, 1.2rem); color: var(--tp-gray-700); max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; align-items: center; }
.hero-microcopy { margin-top: 14px; font-size: 0.88rem; color: var(--tp-gray-600); }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; border-radius: var(--tp-r-lg); box-shadow: var(--tp-sh-float); }
.hero-visual.framed img { border: 1px solid var(--tp-gray-200); }
.hero-badge {
  position: absolute; bottom: -14px; left: 18px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; background: var(--tp-white);
  border-radius: var(--tp-r-md); box-shadow: var(--tp-sh-card);
}
.hero-badge .badge-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--tp-yellow); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.hero-badge b { font-size: 0.95rem; color: var(--tp-black); }
.hero-badge span { display: block; font-size: 0.78rem; color: var(--tp-gray-600); }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; max-width: 460px; margin-inline: auto; }
}

/* =====================  Problem / text block  ===================== */
.band-paper { background: var(--tp-paper-band); }
.band-dark { background: var(--tp-black); color: var(--tp-white); }
.band-dark h2 { color: var(--tp-white); }
.band-red { background: var(--tp-red); color: var(--tp-white); position: relative; overflow: hidden; }
.band-red h2 { color: var(--tp-white); }
.lead-text { font-size: clamp(1.05rem,0.5vw+0.9rem,1.22rem); color: var(--tp-gray-700); max-width: 760px; line-height: 1.6; }
.lead-text strong { color: var(--tp-black); font-weight: 700; }
.pain-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 0; max-width: 640px; }
.pain-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; color: var(--tp-gray-700); }
.pain-list li::before { content: "✕"; color: var(--tp-red); font-weight: 800; flex-shrink: 0; }
.reg-list { display: flex; flex-direction: column; gap: 12px; max-width: 680px; margin-top: 8px; }
.reg-list li { font-size: 1.02rem; color: var(--tp-gray-700); line-height: 1.5; padding: 12px 16px; background: var(--tp-white); border: 1px solid var(--tp-gray-200); border-radius: var(--tp-r-md); }

/* =====================  Steps (how it works)  ===================== */
.steps { display: flex; flex-direction: column; gap: clamp(28px,4vw,44px); max-width: 720px; margin-inline: auto; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--tp-red); color: var(--tp-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--tp-display); font-weight: 800; font-size: 1.5rem;
  box-shadow: var(--tp-sh-red);
}
.step h3 { font-size: 1.22rem; margin-bottom: 6px; }
.step p { color: var(--tp-gray-700); }
.step-result { margin-top: 8px; padding: 22px 26px; background: var(--tp-yellow-soft); border-radius: var(--tp-r-md); }
.step-result b { color: var(--tp-red); }

/* =====================  Vertical / feature cards  ===================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.v-card {
  position: relative; border-radius: var(--tp-r-lg); overflow: hidden;
  background: var(--tp-black); aspect-ratio: 16/11; box-shadow: var(--tp-sh-card);
  transition: transform var(--tp-dur-base) var(--tp-ease-out), box-shadow var(--tp-dur-base) var(--tp-ease-out);
}
.v-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--tp-dur-slow) var(--tp-ease-out); }
.v-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgb(17 17 17 / 88%)); }
.v-card:hover { transform: translate3d(0,-3px,0); box-shadow: var(--tp-sh-float); }
.v-card:hover img { transform: scale(1.04); }
.v-card-meta { position: absolute; inset: auto 0 0 0; padding: clamp(16px,2.4vw,22px); z-index: 1; color: var(--tp-white); }
.v-card-meta .name { display: flex; align-items: center; gap: 8px; font-family: var(--tp-display); font-weight: 700; font-size: 1.12rem; }
.v-card-meta .detail { font-size: 0.86rem; color: rgb(255 255 255 / 82%); margin-top: 2px; }

/* simple icon feature card */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; }
.feature {
  background: var(--tp-white); border: 1px solid var(--tp-gray-200);
  border-radius: var(--tp-r-lg); padding: 26px;
  transition: transform var(--tp-dur-base) var(--tp-ease-out), box-shadow var(--tp-dur-base) var(--tp-ease-out);
}
.feature:hover { transform: translate3d(0,-2px,0); box-shadow: var(--tp-sh-card); }
.feature .ficon { width: 48px; height: 48px; border-radius: var(--tp-r-md); background: var(--tp-yellow); color: var(--tp-black); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.feature h3 { font-size: 1.14rem; margin-bottom: 8px; }
.feature p { color: var(--tp-gray-700); font-size: 0.96rem; }

/* =====================  Comparison table  ===================== */
.cmp { width: 100%; max-width: 720px; margin-inline: auto; border-collapse: collapse; background: var(--tp-white); border-radius: var(--tp-r-lg); overflow: hidden; box-shadow: var(--tp-sh-card); }
.cmp th, .cmp td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--tp-gray-200); font-size: 0.96rem; }
.cmp thead th { background: var(--tp-black); color: var(--tp-white); font-family: var(--tp-display); }
.cmp thead th:last-child { color: var(--tp-yellow); }
.cmp td.yes { color: var(--tp-green); font-weight: 700; }
.cmp td.no { color: var(--tp-gray-400); }
.cmp tr:last-child td { border-bottom: 0; }
@media (max-width: 760px) {
  .cmp { display: block; box-shadow: none; background: transparent; max-width: 480px; border-radius: 0; }
  .cmp thead { display: none; }
  .cmp tbody { display: flex; flex-direction: column; gap: 12px; }
  .cmp tr { display: block; background: var(--tp-white); border-radius: var(--tp-r-lg); padding: 14px 16px; box-shadow: var(--tp-sh-card); }
  .cmp td { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--tp-gray-200); font-size: 0.94rem; text-align: right; }
  .cmp td:first-child { font-weight: 700; color: var(--tp-ink); font-size: 1rem; padding-bottom: 12px; text-align: left; display: block; }
  .cmp td:last-child { border-bottom: 0; padding-bottom: 0; }
  .cmp td:not(:first-child)::before { content: attr(data-label); font-weight: 600; color: var(--tp-gray-700); margin-right: 12px; }
}

/* =====================  Testimonials  ===================== */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; }
.quote {
  background: var(--tp-white); border: 1px solid var(--tp-gray-200);
  border-radius: var(--tp-r-lg); padding: 26px; display: flex; flex-direction: column; gap: 14px;
}
.quote .stars { color: var(--tp-yellow); letter-spacing: 2px; font-size: 1rem; }
.quote blockquote { font-size: 1.02rem; color: var(--tp-ink); line-height: 1.55; }
.quote-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote-foot img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--tp-white); box-shadow: 0 0 0 1px var(--tp-gray-200); }
.quote-foot .who b { display: block; font-size: 0.96rem; color: var(--tp-black); }
.quote-foot .who span { font-size: 0.82rem; color: var(--tp-gray-600); }
.proof-note { text-align: center; margin-top: 22px; font-size: 0.8rem; font-style: italic; color: var(--tp-gray-600); }

/* =====================  Fachada strip  ===================== */
.fachada { display: grid; grid-template-columns: repeat(10, 1fr); gap: 8px; border-radius: var(--tp-r-md); overflow: hidden; }
.fachada li { aspect-ratio: 1/1; overflow: hidden; background: var(--tp-gray-100); }
.fachada img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.7) brightness(0.96); transition: filter var(--tp-dur-slow) var(--tp-ease-out), transform var(--tp-dur-slow) var(--tp-ease-out); }
.fachada li:hover img { filter: none; transform: scale(1.04); }
@media (max-width: 1080px){ .fachada { grid-template-columns: repeat(5,1fr); } }
@media (max-width: 600px){ .fachada { grid-template-columns: repeat(4,1fr); gap: 6px; } .fachada li:nth-child(n+9){ display:none; } }

/* =====================  Pricing  ===================== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; max-width: 1000px; margin-inline: auto; }
.plan {
  background: var(--tp-white); border: 1.5px solid var(--tp-gray-200); border-radius: var(--tp-r-lg);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 12px; position: relative;
  transition: transform var(--tp-dur-base) var(--tp-ease-out), box-shadow var(--tp-dur-base) var(--tp-ease-out);
}
.plan:hover { transform: translate3d(0,-3px,0); box-shadow: var(--tp-sh-card); }
.plan .tier { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tp-red); }
.plan .price { display: flex; align-items: baseline; gap: 4px; margin-block: 4px; }
.plan .price .amount { font-family: var(--tp-display); font-weight: 800; font-size: clamp(2.2rem,3vw+1rem,3rem); color: var(--tp-black); letter-spacing: -0.03em; }
.plan .price .per { font-size: 0.92rem; color: var(--tp-gray-600); }
.plan .billing { font-size: 0.88rem; color: var(--tp-gray-600); }
.plan ul { display: flex; flex-direction: column; gap: 10px; margin: 14px 0; }
.plan li { position: relative; padding-left: 26px; font-size: 0.94rem; color: var(--tp-gray-700); line-height: 1.4; }
.plan li.ok::before { content: "✓"; position: absolute; left: 0; color: var(--tp-green); font-weight: 800; }
.plan li.no { color: var(--tp-gray-400); }
.plan li.no::before { content: "—"; position: absolute; left: 0; color: var(--tp-gray-400); }
.plan li strong { color: var(--tp-black); }
.plan .btn { margin-top: auto; }
.plan.featured {
  border-color: var(--tp-red); box-shadow: var(--tp-sh-red);
  transform: translateY(-8px); background: linear-gradient(180deg, #fff, var(--tp-red-soft));
}
.plan.featured:hover { transform: translateY(-11px); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--tp-red); color: var(--tp-white);
  padding: 6px 16px; border-radius: var(--tp-r-pill);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: var(--tp-sh-red); white-space: nowrap;
}
.plan .save-tag { display: inline-block; align-self: flex-start; background: var(--tp-green-soft); color: var(--tp-green); border: 1px solid rgb(31 157 87 / 30%); padding: 4px 10px; border-radius: var(--tp-r-pill); font-size: 0.8rem; font-weight: 700; }
.plan .strike { text-decoration: line-through; color: var(--tp-gray-400); font-size: 0.9rem; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; max-width: 440px; } .plan.featured { transform: none; } .plan.featured:hover { transform: translate3d(0,-3px,0); } }

/* =====================  Guarantees  ===================== */
.guarantees { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; max-width: 920px; margin-inline: auto; }
.guarantee { text-align: center; padding: 26px; }
.guarantee .gicon { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; background: var(--tp-green-soft); color: var(--tp-green); display: flex; align-items: center; justify-content: center; font-size: 26px; }
.guarantee h3 { font-size: 1.1rem; margin-bottom: 6px; }
.guarantee p { color: var(--tp-gray-700); font-size: 0.94rem; }

/* =====================  FAQ  ===================== */
.faq-list { max-width: 760px; margin-inline: auto; border-top: 1px solid var(--tp-gray-200); }
.faq-item { border-bottom: 1px solid var(--tp-gray-200); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 44px 20px 0; position: relative; font-family: var(--tp-display); font-weight: 600; font-size: 1.04rem; color: var(--tp-black); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; position: absolute; right: 4px; top: 50%; width: 12px; height: 12px; border-right: 2px solid var(--tp-red); border-bottom: 2px solid var(--tp-red); transform: translateY(-70%) rotate(45deg); transition: transform var(--tp-dur-base) var(--tp-ease-out); }
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item summary:hover { color: var(--tp-red); }
.faq-answer { overflow: hidden; }
.faq-item .faq-answer { padding-bottom: 20px; color: var(--tp-gray-700); line-height: 1.6; }
.faq-item .faq-answer ul { list-style: disc; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }

/* =====================  Final CTA / footer  ===================== */
.final { text-align: center; padding-block: clamp(64px,9vw,120px); position: relative; overflow: hidden; }
.final h2 { font-size: clamp(1.9rem,3.5vw+0.6rem,3.2rem); max-width: 760px; margin-inline: auto; }
.final .lead-text { margin: 16px auto 0; text-align: center; color: rgb(255 255 255 / 90%); }
.final .hero-cta { justify-content: center; }
.final-ticks { margin-top: 20px; font-size: 0.86rem; color: rgb(255 255 255 / 82%); }

.foot { background: var(--tp-black); color: rgb(255 255 255 / 70%); padding-block: 40px 28px; text-align: center; }
.foot .logo-lockup { color: #fff; justify-content: center; margin-bottom: 14px; }
.foot .logo-lockup .wordmark { color: #fff; }
.foot .logo-lockup .wordmark em { color: var(--tp-red-soft); }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; margin: 16px 0; font-size: 0.9rem; }
.foot-links a { color: rgb(255 255 255 / 70%); transition: color var(--tp-dur-quick) var(--tp-ease-out); }
.foot-links a:hover { color: var(--tp-yellow); }
.foot-copy { font-size: 0.82rem; color: rgb(255 255 255 / 45%); }

/* =====================  Sticky mobile CTA  ===================== */
.sticky-cta { display: none; position: fixed; inset: auto 0 0 0; z-index: 90; padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px)); background: rgb(255 255 255 / 96%); backdrop-filter: blur(10px); box-shadow: 0 -4px 20px rgb(17 17 17 / 10%); }
.sticky-cta .btn { width: 100%; }
@media (max-width: 760px) { .sticky-cta { display: block; } body.has-sticky { padding-bottom: 84px; } }

/* =====================  Galeria de encartes reais (masonry)  ===================== */
.encarte-grid { columns: 4 220px; column-gap: 16px; max-width: 1040px; margin-inline: auto; }
.encarte-card { display: block; break-inside: avoid; margin-bottom: 16px; position: relative; border-radius: var(--tp-r-md); overflow: hidden; box-shadow: var(--tp-sh-card); color: #fff; text-decoration: none; transition: transform var(--tp-dur-base) var(--tp-ease-out), box-shadow var(--tp-dur-base) var(--tp-ease-out); }
.encarte-card img { width: 100%; display: block; aspect-ratio: auto; }
.encarte-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgb(17 17 17 / 78%)); pointer-events: none; }
.encarte-card .tag { position: absolute; inset: auto 0 0 0; z-index: 1; padding: 12px 14px; font-family: var(--tp-display); font-weight: 700; font-size: 0.92rem; display: flex; align-items: center; gap: 6px; }
.encarte-card:hover { transform: translate3d(0,-3px,0); box-shadow: var(--tp-sh-float); }
@media (max-width: 760px) { .encarte-grid { columns: 2 150px; column-gap: 12px; } .encarte-card { margin-bottom: 12px; } }

/* =====================  Flow (passo a passo com screenshots reais)  ===================== */
.flow { display: flex; flex-direction: column; gap: clamp(36px, 5vw, 64px); max-width: 980px; margin-inline: auto; }
.flow-step { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 52px); align-items: center; }
.flow-step:nth-child(even) .flow-shot { order: -1; }
.flow-shot { border-radius: var(--tp-r-lg); overflow: hidden; box-shadow: var(--tp-sh-card); border: 1px solid var(--tp-gray-200); background: var(--tp-white); }
.flow-shot img { width: 100%; display: block; }
.flow-text .step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--tp-red); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--tp-display); font-weight: 800; font-size: 1.2rem; box-shadow: var(--tp-sh-red); margin-bottom: 14px; }
.flow-text h3 { font-size: clamp(1.2rem, 1vw + 0.9rem, 1.5rem); margin-bottom: 8px; }
.flow-text p { color: var(--tp-gray-700); }
@media (max-width: 760px) {
  .flow-step { grid-template-columns: 1fr; gap: 18px; }
  .flow-step:nth-child(even) .flow-shot { order: 0; }
}

/* =====================  MOTION: scroll reveal  ===================== */
.reveal { opacity: 0; transition: opacity var(--tp-dur-slow) var(--tp-ease-out); will-change: opacity; }
.reveal.in { opacity: 1; }
.reveal.d1 { transition-delay: 60ms; }
.reveal.d2 { transition-delay: 120ms; }
.reveal.d3 { transition-delay: 180ms; }
.reveal.d4 { transition-delay: 240ms; }

/* pulse for "continue" / live dots */
.tp-pulse { animation: tp-pulse 1.8s var(--tp-ease-in-out) infinite; }
@keyframes tp-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } }
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--tp-green); box-shadow: 0 0 0 0 rgb(31 157 87 / 50%); animation: tp-ping 1.8s var(--tp-ease-out) infinite; }
@keyframes tp-ping { 0% { box-shadow: 0 0 0 0 rgb(31 157 87 / 45%); } 70%,100% { box-shadow: 0 0 0 10px rgb(31 157 87 / 0%); } }

/* =====================  Reduced motion  ===================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 760px) { .btn:hover { transform: none; } }
