/* ===================================================================
   DETBOX V2 - Based on Struct Produto layout + purple accent
   Montserrat + JetBrains Mono | Dark minimal product showcase
   =================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #090b14;
  --surface: #0f1219;
  --card: #0d0f17;
  --border: rgba(255,255,255,0.06);
  --border-h: rgba(255,255,255,0.12);
  --t1: #f4f4f5;
  --t2: #a1a1aa;
  --t3: #71717a;
  --accent: #9333ea;
  --accent-dim: #7c3aed;
  --accent-soft: rgba(147,51,234,0.06);
  --accent-border: rgba(147,51,234,0.18);
  --accent-glow: rgba(147,51,234,0.08);
  --font: 'Montserrat', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --max: 1120px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font); font-weight: 400; font-size: 1rem;
  line-height: 1.65; color: var(--t2); background: var(--bg);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: white; }

.grain {
  position: fixed; inset: 0; z-index: 50; pointer-events: none; opacity: 0.02;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.container { max-width: var(--max); margin: 0 auto; padding-inline: 2rem; }
strong { color: var(--t1); font-weight: 600; }

/* --- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 600; font-size: 0.85rem;
  text-decoration: none; padding: 0.7rem 1.6rem; border-radius: 10px;
  border: none; cursor: pointer; transition: all 0.35s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-fill { background: var(--accent-dim); color: white; box-shadow: 0 2px 12px rgba(124,58,237,0.25); }
.btn-fill:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(124,58,237,0.3); }
.btn-outline { background: transparent; color: var(--t2); border: 1px solid rgba(255,255,255,0.1); }
.btn-outline:hover { border-color: var(--accent-border); color: var(--accent); background: var(--accent-soft); }
.btn-full { width: 100%; }
.btn-lg { padding: 0.85rem 2rem; font-size: 0.9rem; }

/* === HERO =========================================================== */
.hero {
  padding: 6rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(9,11,20,0.55) 0%, rgba(9,11,20,0.3) 40%, rgba(9,11,20,0.7) 75%, var(--bg) 100%),
    radial-gradient(ellipse at center top, transparent 30%, var(--bg) 80%);
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  opacity: 0; transition: opacity 1s ease-in-out;
}
.hero-bg-img.active { opacity: 0.18; }

.hero .container { position: relative; z-index: 2; }

.hero-logo {
  display: inline-flex; align-items: center;
  margin-bottom: 2rem;
}
.hero-logo-img { height: 160px; width: auto; image-rendering: -webkit-optimize-contrast; }

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.08;
  color: var(--t1); margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: var(--t2); line-height: 1.75; max-width: 580px; margin: 0 auto 3rem;
  text-wrap: balance;
}

.hero-stats { display: flex; justify-content: center; gap: clamp(2.5rem, 5vw, 5rem); }
.hero-stat { text-align: center; }
.hero-stat-n {
  display: block; font-family: var(--mono); font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 600; color: var(--t1); line-height: 1;
}
.hero-stat-l {
  display: block; font-size: 0.68rem; font-weight: 500; color: var(--t3);
  margin-top: 0.4rem; letter-spacing: 0.04em;
}

.hero-update {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-top: 2rem;
}
.hero-update-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #22c55e;
  animation: heroDotPulse 2s ease-in-out infinite;
}
@keyframes heroDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.hero-update span {
  font-family: var(--mono); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.06em; color: var(--t3);
}

.hero-cta {
  display: flex; justify-content: center; gap: 0.75rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}

/* === SECTION COMMON ================================================= */
.sec { padding: clamp(2rem, 3vw, 2.5rem) 0; }
.sec-head { text-align: center; margin-bottom: clamp(1rem, 2vw, 1.5rem); }
.sec-head .pre {
  display: block; font-family: var(--mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.65rem;
}
.sec-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--t1);
  text-wrap: balance;
}
.sec-desc {
  font-size: 0.92rem; color: var(--t3); line-height: 1.7;
  max-width: 580px; margin: 1rem auto 0; text-wrap: balance;
}

/* === PERFORMANCE ==================================================== */
.tools, .precast, .gallery, .faq, .sec {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* === VIDEO SHOWCASE ================================================== */
.videos { padding: clamp(2rem, 3vw, 2.5rem) 0; border-top: 1px solid var(--border); }

.video-featured { position: relative; margin-bottom: 1.5rem; }
.video-player {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
}
.video-player video { width: 100%; display: block; transition: opacity 0.2s ease; }
.video-label {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  font-family: var(--mono); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: white; background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 0.4rem 0.85rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}

.video-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.video-thumb {
  background: none; border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; cursor: pointer; padding: 0;
  transition: all 0.25s var(--ease); display: flex; flex-direction: column;
}
.video-thumb:hover { border-color: var(--border-h); }
.video-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 4px 20px var(--accent-glow);
}
.video-thumb video {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; pointer-events: none;
}
.video-thumb span {
  display: block; font-family: var(--mono); font-size: 0.5rem; font-weight: 500;
  letter-spacing: 0.04em; color: var(--t3);
  padding: 0.45rem 0.5rem; text-align: center; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.video-thumb.active span { color: var(--accent); }

/* === RIBBON ========================================================= */
.ribbon-marquee {
  position: relative; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); margin-bottom: 1.25rem;
}
.ribbon-marquee::before, .ribbon-marquee::after {
  content:""; position: absolute; top: 0; bottom: 0; width: 3rem; z-index: 2; pointer-events: none;
}
.ribbon-marquee::before { left: 0; background: linear-gradient(to right, var(--card), transparent); }
.ribbon-marquee::after { right: 0; background: linear-gradient(to left, var(--card), transparent); }
.ribbon-track {
  display: flex; align-items: stretch; gap: 0.65rem; width: max-content;
  animation: ribbonScroll 40s linear infinite; padding: 0.85rem 0.5rem;
}
.ribbon-panel {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 0.6rem 0.65rem 0.45rem;
  background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px; flex-shrink: 0;
}
.ribbon-panel-buttons { display: flex; align-items: flex-start; gap: 0.15rem; flex: 1; }
.ribbon-panel-label {
  text-align: center; font-family: var(--mono); font-size: 0.48rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
  padding-top: 0.3rem; margin-top: 0.45rem;
  border-top: 1px solid rgba(147,51,234,0.08); white-space: nowrap;
}
.ribbon-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  padding: 0.3rem 0.25rem; border-radius: 5px; flex-shrink: 0;
}
.ribbon-btn img { width: 24px; height: 24px; }
.ribbon-btn span { font-size: 0.42rem; font-weight: 500; color: var(--t3); text-align: center; line-height: 1.15; white-space: pre-line; }
.ribbon-group { display: flex; flex-direction: column; gap: 0.2rem; flex-shrink: 0; }
.ribbon-group-buttons {
  display: flex; align-items: flex-start; gap: 0.1rem;
  padding: 0.2rem 0.25rem; background: rgba(147,51,234,0.03);
  border: 1px solid rgba(147,51,234,0.06); border-radius: 5px;
}
.ribbon-group-label {
  font-family: var(--mono); font-size: 0.36rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--t3);
  text-align: center; white-space: nowrap;
}
@keyframes ribbonScroll { from { transform: translateX(0); } to { transform: translateX(-25%); } }

/* === TOOLS ========================================================== */
.tools { padding: clamp(2rem, 3vw, 2.5rem) 0; }

.tools-split {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--card);
}

.tools-tabs {
  display: flex; border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.15); overflow-x: auto; scrollbar-width: none;
}
.tools-tabs::-webkit-scrollbar { display: none; }

.tools-tab {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 1rem 1.5rem; background: none; border: none; cursor: pointer;
  text-align: center; transition: all 0.25s var(--ease);
  border-right: 1px solid var(--border); position: relative;
  white-space: nowrap; flex: 1; justify-content: center;
}
.tools-tab:last-child { border-right: none; }
.tools-tab::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--accent); opacity: 0; transition: opacity 0.25s var(--ease);
}
.tools-tab:hover { background: rgba(255,255,255,0.02); }
.tools-tab.active { background: rgba(147,51,234,0.04); }
.tools-tab.active::after { opacity: 1; }

.tools-tab-icon { width: 15px; height: 15px; flex-shrink: 0; color: var(--t3); opacity: 0.5; transition: all 0.25s var(--ease); }
.tools-tab.active .tools-tab-icon { color: var(--accent); opacity: 1; }
.tools-tab-name { font-size: 0.82rem; font-weight: 600; color: var(--t3); transition: color 0.2s; }
.tools-tab.active .tools-tab-name { color: var(--t1); }
.tools-tab-count {
  font-family: var(--mono); font-size: 0.55rem; font-weight: 500;
  color: var(--t3); opacity: 0.4; background: rgba(255,255,255,0.04);
  padding: 0.15rem 0.4rem; border-radius: 6px; line-height: 1;
}
.tools-tab.active .tools-tab-count { color: var(--accent); opacity: 0.8; background: var(--accent-soft); }

.tools-detail { position: relative; padding: 2.5rem; }

.tools-panel {
  display: none; flex-direction: column; gap: 1.5rem;
  animation: panelFadeIn 0.35s var(--ease);
}
.tools-panel.active { display: flex; }
@keyframes panelFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.tools-panel h3 { font-size: 1.35rem; font-weight: 800; color: var(--t1); letter-spacing: -0.02em; }
.tools-panel > p { font-size: 0.9rem; color: var(--t3); line-height: 1.7; max-width: 520px; }

.tools-cmds { display: flex; flex-direction: column; gap: 0.4rem; }
.tools-cmd {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.7rem 0.85rem; border-radius: 10px; transition: all 0.2s var(--ease);
}
.tools-cmd:hover { background: rgba(255,255,255,0.025); }
.tools-cmd img { width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0; }
.tools-cmd strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--t1); margin-bottom: 0.1rem; }
.tools-cmd span { font-size: 0.72rem; color: var(--t3); line-height: 1.4; }
.tools-cmd-sm img { width: 22px; height: 22px; }
.tools-cmd-sm strong { font-size: 0.75rem; font-weight: 500; }
.tools-cmd-sm span { font-size: 0.65rem; }

.tools-pdb { margin-top: 0.25rem; }
.tools-pdb + .tools-pdb { margin-top: 0.75rem; }
.tools-pdb-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.tools-pdb-label {
  font-family: var(--mono); font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); white-space: nowrap;
}
.tools-pdb-line { flex: 1; height: 1px; background: linear-gradient(to right, var(--accent-border), transparent); }
.tools-pdb-items {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.15rem; padding-left: 0.25rem; border-left: 1px solid rgba(147,51,234,0.12);
}

/* === PILL TABS SHOWCASE ============================================== */
.precast { padding: clamp(2rem, 3vw, 2.5rem) 0; border-top: 1px solid var(--border); }

.pill-showcase { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }

.pill-tabs {
  display: flex; gap: 0.35rem; padding: 0.3rem;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 100px; overflow-x: auto; overscroll-behavior-x: contain;
  scrollbar-width: none; touch-action: pan-x;
}
.pill-tabs::-webkit-scrollbar { display: none; }

.pill-tab {
  padding: 0.55rem 1.15rem; border-radius: 100px; border: none; background: none;
  font-family: var(--font); font-size: 0.75rem; font-weight: 600;
  color: var(--t3); cursor: pointer; white-space: nowrap; transition: all 0.25s var(--ease);
}
.pill-tab:hover { color: var(--t2); }
.pill-tab.active {
  background: var(--accent); color: white;
  box-shadow: 0 2px 12px rgba(147,51,234,0.3);
}

.pill-player {
  width: 100%; position: relative;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03);
}

.pill-video { display: none; }
.pill-video.active { display: block; animation: pillFadeIn 0.4s var(--ease); }
@keyframes pillFadeIn { from { opacity: 0; } to { opacity: 1; } }
.pill-video video { width: 100%; display: block; }

/* === COVERFLOW ======================================================= */
.gallery { padding: 1.5rem 0; border-top: 1px solid var(--border); }
.gallery .sec-head { margin-bottom: 0; }

.coverflow {
  position: relative; overflow: hidden; padding: 0; perspective: 1200px;
}
.coverflow::before, .coverflow::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: clamp(4rem, 12vw, 10rem); z-index: 4; pointer-events: none;
}
.coverflow::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.coverflow::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.coverflow-track {
  display: flex; align-items: center; justify-content: center;
  position: relative; height: 480px;
}
.coverflow-slide {
  position: absolute; width: 780px; max-width: 58vw;
  border-radius: 12px; overflow: hidden; border: 1px solid var(--border);
  background: var(--card); box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  transition: all 0.55s var(--ease); cursor: pointer; will-change: transform, opacity;
}
.coverflow-slide img { width: 100%; display: block; }

.coverflow-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--border);
  background: rgba(9,11,20,0.8); backdrop-filter: blur(8px);
  color: var(--t2); cursor: pointer; transition: all 0.2s var(--ease);
}
.coverflow-btn:hover { border-color: var(--accent-border); color: var(--t1); background: rgba(147,51,234,0.15); }
.coverflow-btn svg { width: 18px; height: 18px; }
.coverflow-prev { left: clamp(1rem, 4vw, 3rem); }
.coverflow-next { right: clamp(1rem, 4vw, 3rem); }

/* === MID CTA ======================================================== */
.mid-cta-wrap { text-align: center; padding: 2rem 1.5rem; }
.mid-cta-wrap .btn { min-width: 360px; padding: 1rem 3rem; font-size: 1rem; }

/* === V1 SHARED STYLES (compat, extras, pricing) ==================== */
.section { padding: clamp(2.5rem, 4vw, 3.5rem) 0; }
.wrap { max-width: 1140px; margin: 0 auto; padding-inline: 1.5rem; }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
  color: var(--t1); margin-bottom: 2.5rem;
}

.tag {
  display: inline-block;
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent-border);
  padding: 0.25rem 0.85rem; border-radius: 60px; margin-bottom: 1rem;
}

/* Compat */
.compat-card {
  display: flex; align-items: center; gap: 2.5rem; padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.06); border-radius: 20px;
  transition: border-color 0.3s var(--ease);
}
.compat-card:hover { border-color: var(--accent-border); }
.compat-logo {
  width: 80px; height: 80px; object-fit: contain; flex-shrink: 0;
  border-radius: 16px; background: var(--surface); padding: 8px;
}
.compat-card h3 { font-size: 1.35rem; font-weight: 700; color: var(--t1); margin-bottom: 0.5rem; }
.compat-card p { font-size: 0.95rem; color: var(--t2); line-height: 1.7; max-width: 550px; }

/* Extras */
.extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.extra-card {
  padding: 1.5rem; border: 1px solid rgba(255,255,255,0.06); border-radius: 14px;
  transition: all 0.3s var(--ease);
}
.extra-card:hover { border-color: var(--accent-border); background: var(--accent-soft); }
.extra-icon { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; margin-bottom: 0.75rem; }
.extra-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--t1); margin-bottom: 0.35rem; }
.extra-card p { font-size: 0.825rem; color: var(--t3); line-height: 1.55; }

/* Pricing - asymmetric duo */
.pricing-duo {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 1.25rem;
  align-items: start; max-width: 760px; margin: 0 auto;
}
.price-card {
  padding: 2rem; border: 1px solid rgba(255,255,255,0.06); border-radius: 16px;
  transition: all 0.35s var(--ease); position: relative;
}
.price-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-2px); }

.price-badge {
  position: absolute; top: -10px; left: 2rem;
  font-family: var(--mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.85rem; border-radius: 60px;
  background: var(--accent-dim); color: white;
}

.price-card h3 { font-size: 1.35rem; font-weight: 700; color: var(--t1); }
.price-sub {
  font-family: var(--mono); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent);
  display: block; margin-top: 0.15rem;
}
.price-value { margin: 1.25rem 0; }
.price-old { display: block; font-size: 0.8rem; color: var(--t3); text-decoration: line-through; margin-bottom: 0.1rem; }
.price-label { display: block; font-size: 0.85rem; color: var(--t3); margin-bottom: 0.25rem; }
.price-amount { font-family: var(--mono); font-size: 2rem; font-weight: 500; color: var(--t1); line-height: 1.1; }
.price-amount-xl { font-size: 2.75rem; }
.price-amount small { font-family: var(--font); font-size: 0.8rem; color: var(--t3); font-weight: 400; margin-left: 0.15rem; }
.price-equiv { display: block; font-family: var(--mono); font-size: 0.72rem; font-weight: 500; color: var(--accent); margin-top: 0.2rem; }

.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
.price-card li { font-size: 0.85rem; color: var(--t2); padding-left: 1.2rem; position: relative; }
.price-card li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: 0.4;
}

/* Compact mensal */
.price-compact { align-self: center; }

/* Mega anual */
.price-mega {
  padding: 2rem;
  border-color: var(--accent-border);
  background: linear-gradient(180deg, var(--accent-soft) 0%, transparent 50%);
  text-align: center;
}
.price-mega:hover { border-color: var(--accent); }
.price-mega ul { align-items: center; margin-top: 1.25rem; margin-bottom: 0; }

.price-hook {
  font-size: 0.95rem; font-weight: 500; color: var(--t1);
  margin-bottom: 1.5rem; line-height: 1.5;
}

/* Countdown */
.countdown-wrap { margin-top: 1rem; margin-bottom: 0.25rem; }
.countdown-label {
  display: block; font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem;
}
.countdown { display: inline-flex; align-items: center; gap: 0.35rem; }
.countdown-block { display: flex; align-items: baseline; gap: 0.15rem; }
.cd-num {
  font-family: var(--mono); font-size: 1.5rem; font-weight: 500;
  color: var(--t1); min-width: 2ch; text-align: center;
}
.cd-unit {
  font-family: var(--mono); font-size: 0.65rem; font-weight: 500;
  color: var(--t3); text-transform: uppercase;
}
.cd-sep { font-family: var(--mono); font-size: 1.25rem; color: var(--t3); }

/* === GUARANTEE ====================================================== */
.guarantee {
  display: flex; align-items: center; gap: 2.5rem; padding: 2.5rem;
  border: 1px solid var(--accent-border); border-radius: var(--radius); background: var(--accent-soft);
}
.guarantee-seal {
  flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 1.8rem; font-weight: 600; color: var(--accent);
}
.guarantee h2 { font-size: 1.3rem; font-weight: 800; color: var(--t1); margin-bottom: 0.5rem; }
.guarantee p { font-size: 0.88rem; color: var(--t3); line-height: 1.7; max-width: 500px; }

/* === CREATORS ======================================================= */
.creators {
  display: flex; gap: 2.5rem; align-items: center; padding: 2rem;
  border: 1px solid var(--border); border-radius: var(--radius);
}
.creators-photo { width: 200px; height: auto; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.creators-bios { display: flex; flex-direction: column; gap: 1.5rem; }
.creator-bio h3 { font-size: 1rem; font-weight: 800; color: var(--t1); margin-bottom: 0.15rem; }
.creator-role {
  display: block; font-family: var(--mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
}
.creator-bio p { font-size: 0.82rem; color: var(--t3); line-height: 1.6; }

/* === FAQ ============================================================ */
.faq { padding: clamp(2rem, 3vw, 2.5rem) 0; border-top: 1px solid var(--border); }
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; background: var(--card); transition: border-color 0.3s var(--ease); }
.faq-item[open] { border-color: var(--accent-border); }
.faq-item summary {
  padding: 1rem 1.25rem; font-size: 0.88rem; font-weight: 600; color: var(--t1);
  cursor: pointer; list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--mono); font-size: 1.1rem; font-weight: 400;
  color: var(--t3); flex-shrink: 0; transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq-item p { padding: 0 1.25rem 1.1rem; font-size: 0.82rem; color: var(--t3); line-height: 1.7; }

/* === FINAL CTA ====================================================== */
.final-cta {
  text-align: center; padding: 3.5rem 2.5rem;
  border: 1px solid var(--accent-border); border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 60%);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(147,51,234,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-icon { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 1.25rem; position: relative; }
.final-cta h2 {
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800;
  color: var(--t1); letter-spacing: -0.02em; margin-bottom: 1rem; position: relative;
}
.final-pricing { margin-bottom: 1.25rem; position: relative; }
.final-old { display: block; font-size: 0.8rem; color: var(--t3); text-decoration: line-through; }
.final-label { display: block; font-size: 0.75rem; color: var(--t3); margin-top: 0.2rem; }
.final-amount { display: block; font-family: var(--mono); font-size: 2.5rem; font-weight: 700; color: var(--t1); line-height: 1.1; margin-top: 0.2rem; }
.final-installment { display: block; font-size: 0.75rem; color: var(--t3); margin-top: 0.25rem; }
.final-cta .btn { position: relative; }
.final-cta .countdown-wrap { border-top: none; padding-top: 0; }

/* === WHATSAPP ======================================================= */
.wpp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 45;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: all 0.3s var(--ease); text-decoration: none;
}
.wpp-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
.wpp-float svg { width: 28px; height: 28px; }

/* === ANIMATIONS ===================================================== */
.sr {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.sr.vis { opacity: 1; transform: translateY(0); }
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--d) * 160ms + 200ms);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE ===================================================== */
@media (max-width: 1024px) {
  .extras-grid { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding-top: 5rem; }
  .hero-logo { margin-bottom: 1.25rem; }
  .hero h1 { font-size: 2rem; margin-bottom: 1rem; }
  .hero h1 br, .br-desk { display: none; }
  .hero-logo-img { height: 120px; }
  .hero-sub { margin-bottom: 2rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }

  .video-thumbs { grid-template-columns: repeat(2, 1fr); }
  .pill-tabs {
    overflow-x: auto; flex-wrap: nowrap; border-radius: 12px;
    align-self: stretch; margin-inline: -1.25rem; padding-inline: 1.25rem;
    border: none; background: none;
  }
  .pill-tab {
    padding: 0.45rem 0.85rem; font-size: 0.7rem; flex-shrink: 0;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 100px;
  }
  .pill-tab.active { border-color: var(--accent); }

  .tools-tab { padding: 0.85rem 1rem; flex: 0 0 auto; }
  .tools-tab-count { display: none; }
  .tools-detail { padding: 1.75rem 1.5rem; }

  .compat-card { flex-direction: column; text-align: center; gap: 1.5rem; padding: 2rem 1.5rem; }
  .compat-card p { max-width: 100%; }
  .extras-grid { grid-template-columns: 1fr; }
  .pricing-duo { grid-template-columns: 1fr; max-width: 480px; }
  .price-compact { order: 2; }
  .price-mega { order: 1; }
  .price-amount-xl { font-size: 2.25rem; }

  .guarantee { flex-direction: column; text-align: center; gap: 1.5rem; padding: 2rem 1.5rem; }
  .guarantee p { max-width: 100%; }

  .creators { flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
  .creators-photo { width: 160px; }

  .coverflow-track { height: 380px; }
  .coverflow-slide { width: 520px; }

  .final-cta { padding: 2.5rem 1.5rem; }
  .final-amount { font-size: 2rem; }

  .wpp-float { width: 50px; height: 50px; bottom: 1rem; right: 1rem; }
  .wpp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 1.25rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero-sub { font-size: 0.88rem; }
  .coverflow-track { height: 280px; }
  .coverflow-slide { width: 320px; max-width: 75vw; }
}
