@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --background: 220 30% 5%;
  --foreground: 210 40% 98%;
  --card: 220 25% 8%;
  --muted-foreground: 215 20% 65%;
  --primary: 217 91% 60%;
  --accent: 142 76% 36%;
  --border: 220 20% 18%;
  --radius: 0.75rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2rem; height: 2rem; }

/* ─── Shared ─── */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.3);
  color: hsl(var(--primary)); font-size: 0.875rem; font-weight: 600;
}
.section-line {
  width: 4rem; height: 0.375rem; margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--primary)));
}
.grad-text {
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--primary)));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.blob {
  position: absolute; border-radius: 999px; filter: blur(64px); pointer-events: none;
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

/* ─── CTA button ─── */
.cta-hero {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.625rem;
  padding: 0.875rem 2rem; font-size: 0.875rem; font-weight: 700; color: #fff; border-radius: 0.75rem;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(217 91% 60%) 0%, hsl(199 90% 50%) 45%, hsl(142 76% 40%) 100%);
  background-size: 200% 200%;
  animation: cta-gradient 4s ease infinite, cta-pulse 2.4s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-hero:hover { transform: translateY(-3px) scale(1.03); }
.cta-hero:active { transform: translateY(-1px) scale(0.98); }
.cta-hero span, .cta-hero svg { position: relative; z-index: 1; }
.cta-hero-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 48%, transparent 66%);
  transform: translateX(-120%);
  animation: cta-shine 3.2s ease-in-out infinite;
}
.cta-hero-glow {
  position: absolute; inset: -2px; border-radius: inherit; z-index: -1; pointer-events: none;
  background: linear-gradient(135deg, hsl(217 91% 70%), hsl(142 76% 50%));
  opacity: 0.35; filter: blur(12px);
  animation: cta-glow 2.4s ease-in-out infinite;
}
@keyframes cta-shine { 0%, 55% { transform: translateX(-120%); } 75%, 100% { transform: translateX(120%); } }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 hsl(217 91% 60% / 0.45), 0 10px 30px hsl(217 91% 60% / 0.35); }
  50% { box-shadow: 0 0 0 10px hsl(217 91% 60% / 0), 0 12px 34px hsl(217 91% 60% / 0.45); }
}
@keyframes cta-glow { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 0.55; transform: scale(1.04); } }
@keyframes cta-gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* ─── Hero ─── */
.hero {
  position: relative; overflow: hidden;
  padding: 5rem 0 2rem;
  background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--background)), hsl(var(--card) / 0.3));
}
@media (min-width: 768px) { .hero { padding: 7rem 0 2.5rem; } }
.hero-inner { max-width: 64rem; margin: 0 auto; text-align: center; }
.hero-badge { margin: 0 auto 1.5rem; }
.hero h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1rem;
}
.hero-desc {
  color: hsl(var(--muted-foreground));
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 48rem; margin: 0 auto 1.5rem;
}
.hero-cta-wrap { display: flex; justify-content: center; margin-bottom: 1.5rem; }

/* Group landing (?hardware=1, ?ofertas=1, ?placadevideo=1, ?notebook=1, ?cupons=1) */
.hero-badge-group,
.hero-title-group,
.hero-desc-group,
.hero-cta-group,
.grupos-title-group,
.grupos-desc-group { display: none; }

html.group-landing .hero-badge-default,
html.group-landing .hero-title-default,
html.group-landing .hero-desc-default,
html.group-landing .hero-cta-default,
html.group-landing .grupos-title-default,
html.group-landing .grupos-desc-default { display: none !important; }

html.group-landing .hero-badge-group { display: inline; }
html.group-landing .hero-title-group,
html.group-landing .hero-desc-group { display: block; }
html.group-landing .hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
html.group-landing .grupos-title-group,
html.group-landing .grupos-desc-group { display: block; }

html.group-landing[data-group="hardware"] .group-card[data-group="hardware"],
html.group-landing[data-group="ofertas"] .group-card[data-group="ofertas"],
html.group-landing[data-group="placadevideo"] .group-card[data-group="placadevideo"],
html.group-landing[data-group="notebook"] .group-card[data-group="notebook"],
html.group-landing[data-group="cupons"] .group-card[data-group="cupons"] {
  display: none !important;
}

.hero-group-ctas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
  max-width: 34rem;
}
@media (min-width: 560px) {
  .hero-group-ctas { grid-template-columns: 1fr 1fr; }
}
.hero-group-btn {
  min-height: 3.35rem;
  padding: 0.95rem 1.15rem;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 0.75rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.hero-group-btn.btn-tg { box-shadow: 0 10px 24px rgba(0, 136, 204, 0.28); }
.hero-group-btn.btn-wa { box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28); }
.hero-group-hint {
  margin: 0;
  font-size: 0.88rem;
  color: hsl(var(--muted-foreground));
}

.hero-stats-wrap {
  position: relative; min-height: 7.5rem;
  display: flex; align-items: flex-end; justify-content: center;
  padding-top: 0.5rem;
}
.hero-stats {
  position: relative; z-index: 10;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
@media (min-width: 768px) {
  .hero-stats { display: flex; justify-content: center; gap: 3rem; }
}
.hero-stat-item {
  text-align: center;
  min-width: 12rem;
}
.stat-num {
  font-size: clamp(1.35rem, 2.8vw, 1.875rem);
  font-weight: 800;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  text-align: center;
}
.stat-num.primary { color: hsl(var(--primary)); }
.stat-num.accent { color: hsl(var(--accent)); }
.stat-label { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }
@media (min-width: 768px) { .stat-label { font-size: 0.875rem; } }

/* Floating pills */
.side-pills {
  position: absolute; bottom: 0; height: 10rem; width: 210px;
  overflow: hidden; pointer-events: none; display: none;
}
@media (min-width: 768px) { .side-pills { display: block; } }
@media (min-width: 1024px) { .side-pills { width: 250px; } }
.side-pills.left { right: calc(50% + 140px); }
.side-pills.right { left: calc(50% + 140px); }
@media (min-width: 1024px) {
  .side-pills.left { right: calc(50% + 160px); }
  .side-pills.right { left: calc(50% + 160px); }
}
.hero-notif {
  position: absolute; display: inline-flex; align-items: center; gap: 7px;
  background: hsl(220 25% 10% / 0.92); border: 1px solid hsl(220 20% 28% / 0.85);
  border-radius: 999px; padding: 6px 12px 6px 10px;
  backdrop-filter: blur(14px); white-space: nowrap; pointer-events: none;
  font-size: 12px; color: hsl(210 40% 92%); font-weight: 600;
  opacity: 0; max-width: 200px; bottom: 4px;
  box-shadow: 0 8px 24px hsl(220 30% 5% / 0.4);
  animation: hero-float var(--dur, 9s) ease-in-out infinite both;
}
.hero-notif .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.hero-notif--left { animation-name: hero-float-left; }
.hero-notif--right { animation-name: hero-float-right; }
@keyframes hero-float-left {
  0%, 4% { opacity: 0; transform: translateY(8px) scale(0.96); }
  12% { opacity: 0.2; transform: translateY(0) scale(1); }
  35% { opacity: 0.2; transform: translateY(-90px) scale(1); }
  45%, 100% { opacity: 0; transform: translateY(-110px) scale(0.98); }
}
@keyframes hero-float-right {
  0%, 4% { opacity: 0; transform: translateY(8px) scale(0.96); }
  12% { opacity: 0.2; transform: translateY(0) scale(1); }
  35% { opacity: 0.2; transform: translateY(-90px) scale(1); }
  45%, 100% { opacity: 0; transform: translateY(-110px) scale(0.98); }
}

/* Ticker */
.ticker-section { margin-top: 1.5rem; }
.ticker-section .border-top { border-top: 1px solid hsl(var(--border) / 0.3); padding-top: 1rem; }
.ticker-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track { display: flex; width: max-content; animation: ticker 60s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 2rem; font-size: 12px; color: hsl(var(--muted-foreground)); white-space: nowrap;
}
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: hsl(var(--primary)); opacity: 0.75; }
.ticker-check { color: hsl(var(--accent)); font-size: 10px; margin-left: 2px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── Groups ─── */
.section { position: relative; overflow: hidden; padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.section-head p { color: hsl(var(--muted-foreground)); max-width: 42rem; margin: 0 auto 1.25rem; font-size: 1.05rem; }

.groups-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .groups-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .groups-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .groups-grid { grid-template-columns: repeat(5, 1fr); } }

.group-card {
  position: relative; height: 100%;
  background: hsl(var(--card) / 0.5); backdrop-filter: blur(8px);
  border: 1px solid hsl(var(--primary) / 0.1); border-radius: 1rem;
  padding: 1rem; display: flex; flex-direction: column; gap: 1rem;
  transition: all 0.4s ease;
}
@media (min-width: 768px) { .group-card { padding: 1.25rem; } }
.group-card:hover {
  border-color: hsl(var(--primary) / 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px hsl(var(--primary) / 0.2);
}
.group-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem; padding: 0.625rem;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.group-card:hover .group-icon { transform: scale(1.1); }
.group-card h3 { font-size: 1.125rem; font-weight: 700; }
.group-card .sub { color: hsl(var(--primary) / 0.85); font-size: 0.875rem; font-weight: 600; margin-top: 0.25rem; }
.group-card .desc { color: hsl(var(--muted-foreground)); font-size: 0.875rem; margin-top: 0.5rem; flex-grow: 1; }
.group-actions { margin-top: auto; padding-top: 1rem; border-top: 1px solid hsl(var(--border) / 0.3); display: flex; flex-direction: column; gap: 0.625rem; }
.btn-tg, .btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem;
  font-weight: 600; font-size: 0.875rem; color: #fff;
  text-decoration: none; box-sizing: border-box;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-tg .btn-icon,
.btn-wa .btn-icon,
.btn-tg .ad-link-icon,
.btn-wa .ad-link-icon {
  width: 1em !important;
  height: 1em !important;
  max-width: 1em;
  max-height: 1em;
  flex-shrink: 0;
  display: block;
}
.btn-tg { background: linear-gradient(90deg, #0088cc, #0088ccdd); }
.btn-wa { background: linear-gradient(90deg, #25D366, #25D366dd); }
.btn-tg:hover, .btn-wa:hover { transform: scale(1.03); }

.grad-blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.grad-green { background: linear-gradient(135deg, #22c55e, #10b981); }
.grad-red { background: linear-gradient(135deg, #ef4444, #f97316); }
.grad-purple { background: linear-gradient(135deg, #a855f7, #ec4899); }
.grad-yellow { background: linear-gradient(135deg, #eab308, #f59e0b); }

/* ─── Posts ─── */
.posts-grid {
  display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: hsl(217 91% 60% / 0.4) transparent;
}
@media (min-width: 768px) {
  .posts-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
    overflow: visible; padding-bottom: 0;
  }
}
@media (min-width: 1024px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .posts-grid { grid-template-columns: repeat(4, 1fr); } }

.post-card {
  flex: 0 0 min(85vw, 320px); scroll-snap-align: center;
  position: relative; overflow: hidden; border-radius: 1rem;
  border: 1px solid hsl(var(--primary) / 0.1);
  background: hsl(var(--card) / 0.6); transition: all 0.4s;
}
@media (min-width: 768px) { .post-card { flex: initial; } }
.post-card:hover {
  border-color: hsl(var(--primary) / 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px hsl(var(--primary) / 0.2);
}
.post-label {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
  padding: 0.25rem 0.625rem; font-size: 0.75rem; font-weight: 600;
  border-radius: 999px; background: hsl(var(--background) / 0.85);
  border: 1px solid hsl(var(--primary) / 0.3); color: hsl(var(--primary));
  backdrop-filter: blur(8px);
}
.posts-cta { text-align: center; margin-top: 3rem; }

/* ─── Stats cards ─── */
.stats-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stats-card {
  position: relative; text-align: center;
  background: hsl(var(--card) / 0.5); border: 1px solid hsl(var(--primary) / 0.1);
  border-radius: 1rem; padding: 1.5rem 2rem; transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
  overflow: hidden;
}
.stats-card .num-wrap {
  display: flex;
  justify-content: center;
  min-height: 1.2em;
}
.stats-card:hover {
  border-color: hsl(var(--primary) / 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px hsl(var(--primary) / 0.2);
}
.stats-icon {
  width: 4rem; height: 4rem; margin: 0 auto 1rem; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.stats-card .num {
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  font-weight: 800;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  text-align: center;
  line-height: 1.15;
  background: linear-gradient(90deg, hsl(var(--foreground)), hsl(var(--foreground) / 0.8));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats-card .label { color: hsl(var(--muted-foreground)); margin-top: 0.5rem; }
@media (max-width: 767px) {
  .stats-card .num { font-size: 1.5rem; }
}
.stats-bottom {
  text-align: center; margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid hsl(var(--border) / 0.2);
}
.stats-bottom h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 0.75rem; }
.stats-bottom p { color: hsl(var(--muted-foreground)); max-width: 40rem; margin: 0 auto 1.25rem; }

/* ─── Benefits ─── */
.benefits-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card {
  background: hsl(var(--card) / 0.5); border: 1px solid hsl(var(--primary) / 0.1);
  border-radius: 1rem; padding: 1.5rem; transition: all 0.4s; height: 100%;
}
.benefit-card:hover {
  border-color: hsl(var(--primary) / 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px hsl(var(--primary) / 0.15);
}
.benefit-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--accent) / 0.2));
  color: hsl(var(--primary));
}
.benefit-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.benefit-card p { color: hsl(var(--muted-foreground)); font-size: 0.95rem; }
.benefits-cta { text-align: center; margin-top: 3rem; }

/* ─── Creator ─── */
.creator-grid {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 1024px) { .creator-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.creator-photo { display: none; justify-content: center; position: relative; }
@media (min-width: 1024px) { .creator-photo { display: flex; order: 1; } }
.creator-photo img {
  width: 100%; max-width: 24rem; border-radius: 1rem;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  transition: transform 0.5s;
}
.creator-photo img:hover { transform: scale(1.05); }
.creator-content { order: 2; }
.creator-content h2 { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 800; margin: 1rem 0; }
.creator-content > p { color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; max-width: 36rem; }
.story-item { display: flex; gap: 1rem; margin-bottom: 1rem; }
.story-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: hsl(var(--primary) / 0.1); color: hsl(var(--primary));
}
.story-item h3 { font-size: 1.05rem; font-weight: 600; }
.story-item p { color: hsl(var(--muted-foreground)); font-size: 0.875rem; margin-top: 0.25rem; }
.story-item a {
  color: hsl(var(--primary));
  font-weight: 600;
  text-decoration: none;
}
.story-item a:hover { color: hsl(var(--foreground)); }
.creator-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .creator-actions { flex-direction: row; } }
.btn-primary-solid {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; border-radius: 0.5rem; font-weight: 600; color: #fff;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary-solid:hover { transform: translateY(-3px); box-shadow: 0 12px 30px hsl(var(--primary) / 0.35); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; border-radius: 0.5rem; font-weight: 600;
  border: 2px solid hsl(var(--primary) / 0.3); background: hsl(var(--card));
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover { border-color: hsl(var(--primary)); background: hsl(var(--primary) / 0.05); }

/* ─── Footer ─── */
footer {
  position: relative; background: hsl(var(--card) / 0.85);
  border-top: 1px solid hsl(var(--border) / 0.2); padding: 3rem 0;
}
.footer-grid {
  display: grid; gap: 2rem; margin-bottom: 2rem; padding-bottom: 2rem;
  border-bottom: 1px solid hsl(var(--border) / 0.2);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
footer h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
footer p, footer a { color: hsl(var(--muted-foreground)); font-size: 0.875rem; }
footer a:hover { color: hsl(var(--primary)); }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-social { display: flex; gap: 1rem; margin-top: 0.75rem; }
.footer-bottom {
  display: flex; justify-content: center; align-items: center;
  text-align: center;
  color: hsl(var(--muted-foreground)); font-size: 0.8rem;
}

/* ─── Mobile sticky CTA ─── */
.mobile-sticky {
  position: fixed; inset: auto 0 0 0; z-index: 50;
  pointer-events: none; display: block;
  transform: translateY(100%); opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-sticky.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
@media (min-width: 768px) { .mobile-sticky { display: none !important; } }
.mobile-sticky-inner {
  padding: 0.75rem 1rem max(0.75rem, env(safe-area-inset-bottom));
  background: linear-gradient(to top, hsl(var(--background)), hsl(var(--background) / 0.95), transparent);
}
.mobile-sticky .cta-hero { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .cta-hero, .cta-hero-shine, .cta-hero-glow, .ticker-track, .hero-notif, .blob { animation: none; }
  .hero-notif { opacity: 0; }
}

/* ─── Ad landings (?ad=1|2|3|4) ─── */
#ad-landing { display: none; }
html.ad-mode #site-default { display: none !important; }
html.ad-mode #ad-landing { display: block !important; }
html.ad-mode body { overflow-x: hidden; }
.ad-panel { display: none !important; }
html.ad-v1 .ad-panel-1,
html.ad-v2 .ad-panel-2,
html.ad-v3 .ad-panel-3,
html.ad-v4 .ad-panel-4 { display: block !important; }

.ad-fold { position: relative; overflow: clip; }
.ad-fold-1 {
  background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--background)), hsl(var(--card) / 0.35));
  padding: 2rem 0 0;
}
@media (min-width: 768px) { .ad-fold-1 { padding-top: 2.75rem; } }

.ad-fold-1-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem 1.5rem;
  text-align: center;
  box-sizing: border-box;
}
.ad-fold-1 .hero-badge { margin: 0 auto 1.25rem; }
.ad-headline {
  font-size: clamp(1.85rem, 5.5vw, 3.25rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.03em;
  max-width: 20ch; margin: 0 auto 1.25rem;
}
.ad-kicker {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 700; margin-bottom: 1.25rem;
  color: hsl(var(--foreground));
}

.ad-linktree {
  width: 100%;
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  scroll-margin-top: 1rem;
  text-align: left;
}
@media (min-width: 640px) {
  .ad-linktree { grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; }
}

.ad-linktree-col {
  display: flex !important;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 0;
}

.ad-linktree-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.15rem;
  text-align: center;
}
.ad-linktree-heading--tg { color: #5ec8f2; }
.ad-linktree-heading--wa { color: #4ade80; }

.ad-link {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  width: 100% !important;
  min-height: 3.75rem;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.25;
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
@media (min-width: 768px) {
  .ad-link { font-size: 1.15rem; padding: 1.1rem 1.2rem; min-height: 4rem; }
}

.ad-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.28) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.ad-link:hover::after { transform: translateX(120%); }

.ad-link-icon-wrap,
.ad-link-text,
.ad-link-arrow {
  position: relative;
  z-index: 1;
}

.ad-link-icon-wrap {
  flex-shrink: 0;
  width: 2rem; height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}
.ad-link-icon { width: 1.25rem; height: 1.25rem; display: block; fill: currentColor; }
.ad-link-text {
  flex: 1;
  color: #fff !important;
  font-size: inherit;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 0 1px rgba(0, 0, 0, 0.8),
    0 2px 8px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.25);
}
.ad-link-arrow {
  opacity: 0.9;
  color: #fff;
  font-size: 1.15em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.ad-link--tg {
  background-color: #0088cc;
  background-image: linear-gradient(135deg, #0088cc 0%, #00a2e8 55%, #0077b5 100%);
  box-shadow: 0 8px 22px rgba(0, 136, 204, 0.28);
}
.ad-link--wa {
  background-color: #25d366;
  background-image: linear-gradient(135deg, #1faa55 0%, #25d366 55%, #128c7e 100%);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
}

.ad-link:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.06);
}
.ad-link--tg:hover { box-shadow: 0 14px 32px rgba(0, 136, 204, 0.45); }
.ad-link--wa:hover { box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45); }
.ad-link:hover .ad-link-icon-wrap {
  transform: scale(1.1);
  background: rgba(255,255,255,0.28);
}
.ad-link:hover .ad-link-arrow {
  transform: translateX(4px);
  opacity: 1;
}
.ad-link:active { transform: translateY(-1px) scale(0.99); }

/* Pair carousel (?ad=3) — mesma largura do linktree */
.ad-pair-carousel {
  width: 100%;
  scroll-margin-top: 1rem;
  text-align: left;
}
.ad-pair-headings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  margin-bottom: 0.35rem;
  padding: 0 3rem;
}
@media (max-width: 639px) {
  .ad-pair-headings { padding: 0 2.6rem; gap: 0.75rem; }
}
.ad-pair-shell {
  display: grid;
  grid-template-columns: 2.5rem 1fr 2.5rem;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.ad-pair-viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
  border-radius: 0.85rem;
}
.ad-pair-track {
  display: block;
  width: 100%;
}
/* Show/hide: evita bug de flex+transform com botões width:100% */
.ad-pair-slide {
  display: none;
  width: 100%;
  box-sizing: border-box;
  padding: 0.15rem 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem 1.5rem;
}
.ad-pair-slide.is-active {
  display: grid;
  animation: ad-pair-in 0.28s ease;
}
@keyframes ad-pair-in {
  from { opacity: 0.4; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
.ad-pair-slide > .ad-link {
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: hidden;
  box-sizing: border-box !important;
}
.ad-pair-slide .ad-link-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 639px) {
  .ad-pair-slide { gap: 0.75rem; }
  .ad-pair-slide .ad-link { font-size: 0.92rem; padding: 0.9rem 0.75rem; min-height: 3.5rem; gap: 0.5rem; }
  .ad-pair-slide .ad-link-icon-wrap { width: 1.7rem; height: 1.7rem; }
  .ad-pair-slide .ad-link-icon { width: 1.05rem; height: 1.05rem; }
}
.ad-pair-nav {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--primary) / 0.4);
  color: hsl(var(--foreground));
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, border-color 0.2s, background 0.2s, opacity 0.2s;
  flex-shrink: 0;
}
.ad-pair-nav svg { width: 1.25rem; height: 1.25rem; }
.ad-pair-nav:hover {
  background: hsl(var(--primary) / 0.18);
  border-color: hsl(var(--primary));
  transform: scale(1.06);
}
.ad-pair-nav:disabled {
  opacity: 0.3;
  pointer-events: none;
  transform: none;
}
.ad-pair-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
}
.ad-pair-dots button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: hsl(var(--muted-foreground) / 0.35);
  transition: width 0.25s, background 0.25s;
}
.ad-pair-dots button.active {
  width: 1.4rem;
  background: linear-gradient(90deg, #25d366, #0088cc);
}

/* Pick & go (?ad=4) */
.ad-pick {
  width: 100%;
  scroll-margin-top: 1rem;
  text-align: left;
}
.ad-pick-rail {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.15rem 0.1rem 0.85rem;
  margin-bottom: 0.15rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.ad-pick-rail::-webkit-scrollbar { display: none; }
.ad-pick-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--border) / 0.55);
  background: hsl(var(--card) / 0.55);
  color: hsl(var(--muted-foreground));
  font-weight: 700;
  font-size: 0.86rem;
  transition: transform 0.2s, border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.ad-pick-chip-num {
  font-variant-numeric: tabular-nums;
  font-size: 0.72rem;
  opacity: 0.7;
  letter-spacing: 0.04em;
}
.ad-pick-chip:hover {
  color: hsl(var(--foreground));
  border-color: hsl(var(--primary) / 0.55);
  transform: translateY(-1px);
}
.ad-pick-chip.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0f766e 0%, #0369a1 100%);
  box-shadow: 0 8px 22px rgba(3, 105, 161, 0.35);
}
.ad-pick-stage {
  position: relative;
  overflow: hidden;
  border-radius: 1.15rem;
  padding: 1.35rem 1.25rem 1.25rem;
  background:
    linear-gradient(180deg, hsl(var(--card) / 0.9), hsl(var(--card) / 0.55)),
    linear-gradient(120deg, rgba(37, 211, 102, 0.12), transparent 42%, rgba(0, 136, 204, 0.14));
  border: 1px solid hsl(var(--border) / 0.45);
  box-shadow:
    inset 3px 0 0 #25d366,
    inset -3px 0 0 #0088cc,
    0 18px 40px rgba(0, 0, 0, 0.28);
}
.ad-pick-stage.is-swap .ad-pick-title,
.ad-pick-stage.is-swap .ad-pick-sub,
.ad-pick-stage.is-swap .ad-pick-ctas {
  animation: ad-pick-swap 0.38s ease;
}
@keyframes ad-pick-swap {
  from { opacity: 0.35; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.ad-pick-stage-shine {
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.08), transparent 65%);
  pointer-events: none;
}
.ad-pick-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.ad-pick-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7dd3fc;
}
.ad-pick-count {
  font-size: 0.78rem;
  font-weight: 700;
  color: hsl(var(--muted-foreground));
  font-variant-numeric: tabular-nums;
}
.ad-pick-title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.35rem;
  font-size: clamp(1.55rem, 4vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}
.ad-pick-sub {
  position: relative;
  z-index: 1;
  margin: 0 0 1.15rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.98rem;
  line-height: 1.45;
  max-width: 36ch;
}
.ad-pick-ctas {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.75rem 1rem;
}
@media (max-width: 520px) {
  .ad-pick-ctas { grid-template-columns: 1fr; }
  .ad-pick-stage { padding: 1.15rem 1rem 1.05rem; }
}
.ad-pick-cta {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  min-height: 4rem;
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  text-decoration: none !important;
  color: #fff !important;
  font-weight: 800;
  overflow: hidden;
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}
.ad-pick-cta-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: left;
}
.ad-pick-cta-app {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.ad-pick-cta-name {
  font-size: 1.02rem;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ad-pick-cta--wa {
  background-image: linear-gradient(135deg, #1faa55 0%, #25d366 55%, #128c7e 100%);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}
.ad-pick-cta--tg {
  background-image: linear-gradient(135deg, #0088cc 0%, #00a2e8 55%, #0077b5 100%);
  box-shadow: 0 10px 24px rgba(0, 136, 204, 0.28);
}
.ad-pick-cta:hover {
  transform: translateY(-3px) scale(1.015);
  filter: brightness(1.06);
}
.ad-pick-cta:active { transform: translateY(-1px) scale(0.99); }
.ad-pick-cta .ad-link-icon-wrap {
  background: rgba(255,255,255,0.18);
}
.ad-pick-cta .ad-link-arrow {
  color: #fff;
  opacity: 0.9;
}

.ad-ticker-break {
  position: relative;
  z-index: 2;
  margin-top: 1.25rem;
  border-top: 1px solid hsl(var(--border) / 0.35);
  border-bottom: 1px solid hsl(var(--border) / 0.35);
  background: hsl(var(--card) / 0.45);
  padding: 0.85rem 0;
}

.ad-fold-2 {
  padding: 3.5rem 0 3rem;
  background: hsl(var(--background));
}
@media (min-width: 768px) { .ad-fold-2 { padding: 5rem 0 4rem; } }
.ad-benefits-grid { margin-bottom: 0.5rem; }

.ad-footer {
  border-top: 1px solid hsl(var(--border) / 0.3);
  padding: 1.25rem 0;
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-size: 0.8rem;
}
