/* ==========================================================
   WORKSHOP: VENDA MAIS COM TRÁFEGO PAGO
   High-Conversion · Obsidian Black Luxury Design System
   ========================================================== */

:root {
  /* Elegant Obsidian Black Palette */
  --black-deep:    #000000;
  --black-base:    #04060A;
  --black-surface: #080C14;
  --black-card:    #0D1320;
  --black-elevated:#131B2C;

  /* Accents */
  --electric:      #007BFF;
  --cyan:          #00D9FF;
  --gold:          #FFB703;
  --danger:        #FF3B30;
  --white:         #FFFFFF;
  --muted:         #E2E8F0;
  --subtle:        #8EA4B8;
  --border:        rgba(0, 217, 255, 0.20);
  --border-subtle: rgba(255, 255, 255, 0.07);

  --grad-cta:      linear-gradient(135deg, #007BFF 0%, #00D9FF 100%);
  --grad-page:     radial-gradient(ellipse at 50% -5%,   rgba(0, 123, 255, 0.22) 0%, transparent 60%),
                   radial-gradient(ellipse at 85% 45%,   rgba(0, 217, 255, 0.10) 0%, transparent 50%),
                   radial-gradient(ellipse at 15% 75%,   rgba(0, 123, 255, 0.12) 0%, transparent 55%);

  --font-h: 'Outfit', system-ui, sans-serif;
  --font-b: 'Plus Jakarta Sans', system-ui, sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 9999px;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t: .3s var(--ease-out);
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

body {
  font-family: var(--font-b);
  background-color: var(--black-base);
  background-image: var(--grad-page);
  background-attachment: fixed;
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 80px;
}
@media (min-width: 769px) { body { padding-bottom: 0; } }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Layout shell ── */
.container {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* ═══════════════════════════════════════════════
   TOP URGENCY BAR (countdown)
═══════════════════════════════════════════════ */
.urgency-bar {
  background: rgba(4, 6, 10, 0.94);
  border-bottom: 1px solid rgba(255, 59, 48, 0.35);
  padding: 10px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 900;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 59, 48, 0.15);
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.urgency-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.blink-dot {
  width: 10px;
  height: 10px;
  background: var(--danger);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--danger);
  animation: blink 1.4s infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 14px #FF3B30; }
  50%      { opacity: .35; transform: scale(.8); box-shadow: 0 0 4px #FF3B30; }
}

.countdown {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 59, 48, 0.22) 0%, rgba(180, 15, 15, 0.35) 100%);
  border: 1px solid rgba(255, 59, 48, 0.65);
  border-radius: var(--r-sm);
  padding: 5px 10px;
  min-width: 44px;
  box-shadow: 0 0 12px rgba(255, 59, 48, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}
.cd-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1.15rem;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(255, 59, 48, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);
  line-height: 1;
}
.cd-lbl {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #FFAAAA;
  margin-top: 3px;
}
.cd-sep {
  font-weight: 900;
  color: #FF3B30;
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(255, 59, 48, 0.6);
}

/* ═══════════════════════════════════════════════
   HERO — 100% Image Visible, Clean & High-Conversion
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  padding: 36px 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* Atmospheric ambient backdrop */
.hero-backdrop {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 30%, rgba(0, 217, 255, 0.16) 0%, transparent 60%),
    radial-gradient(circle at 50% 80%, rgba(0, 123, 255, 0.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: var(--r-pill);
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* Poster Frame — Flutuante com iluminação dinâmica (Estilo Physia) */
.hero-poster-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  padding: 4px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.7), rgba(0, 123, 255, 0.4), rgba(8, 12, 20, 0.95));
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.9),
    0 0 45px rgba(0, 217, 255, 0.25);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  animation: float-poster 6s ease-in-out infinite;
}

@keyframes float-poster {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9), 0 0 45px rgba(0, 217, 255, 0.22);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 0 32px 75px rgba(0, 0, 0, 0.95), 0 0 60px rgba(0, 217, 255, 0.38);
  }
}

.hero-poster-box:hover {
  animation-play-state: paused;
  transform: translateY(-6px) scale(1.01);
  box-shadow: 
    0 34px 80px rgba(0, 0, 0, 0.98),
    0 0 65px rgba(0, 217, 255, 0.45);
}

.hero-poster-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border-radius: calc(var(--r-lg) - 4px);
  display: block;
}

/* CTA Stack — Logo abaixo da imagem */
.hero-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 540px;
  margin-top: 6px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--grad-cta);
  color: #030914;
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 217, 255, 0.4);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), filter .2s;
  white-space: nowrap;
}
.btn-cta:hover  { transform: translateY(-3px); box-shadow: 0 10px 34px rgba(0, 217, 255, 0.6); filter: brightness(1.08); }
.btn-cta:active { transform: translateY(0);    filter: brightness(.95); }
.btn-cta:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.btn-cta svg { transition: transform .2s var(--ease-out); }
.btn-cta:hover svg { transform: translateX(4px); }

.cta-hint {
  font-size: .88rem;
  color: var(--subtle);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-hint strong { color: var(--cyan); }

/* Scarcity meter */
.scarcity-meter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 2px;
}
.meter-track {
  width: 140px;
  height: 7px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.meter-fill {
  width: 86%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--danger));
  border-radius: var(--r-pill);
}

/* ═══════════════════════════════════════════════
   INFO STRIP — 3 key facts, compact
═══════════════════════════════════════════════ */
.info-strip {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(8, 12, 20, 0.65);
  backdrop-filter: blur(12px);
  padding: 28px 0;
  margin-bottom: 70px;
}

.info-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 28px;
  flex: 1 1 180px;
  justify-content: center;
}
.strip-item + .strip-item {
  border-left: 1px solid var(--border-subtle);
}
@media (max-width: 580px) {
  .strip-item + .strip-item { border-left: none; border-top: 1px solid var(--border-subtle); }
  .strip-item { flex-basis: 100%; }
}

.strip-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid rgba(0, 217, 255, 0.25);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}
.strip-txt strong {
  display: block;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.strip-txt span {
  font-size: .82rem;
  color: var(--subtle);
}

/* ═══════════════════════════════════════════════
   WHAT YOU LEARN — 4 cards, obsidian dark
═══════════════════════════════════════════════ */
.learn-section {
  text-align: center;
  padding-bottom: 70px;
}

.sec-label {
  display: inline-block;
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}

.sec-title {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 36px;
}
@media (min-width: 640px) { .sec-title { font-size: 2.5rem; } }

.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 500px) { .learn-grid { grid-template-columns: 1fr; } }
@media (min-width: 860px) { .learn-grid { grid-template-columns: repeat(4, 1fr); } }

.learn-card {
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}
.learn-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 217, 255, 0.15);
}
.learn-num {
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 800;
  color: var(--cyan);
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid rgba(0, 217, 255, 0.25);
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.learn-title {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.learn-desc {
  font-size: .9rem;
  color: var(--subtle);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   SPEAKERS — compact row
═══════════════════════════════════════════════ */
.speakers-section {
  text-align: center;
  padding-bottom: 70px;
}

.speakers-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
}

.speaker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 110px;
}
.speaker-av {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.4), rgba(0, 217, 255, 0.4));
  padding: 2px;
  transition: transform .3s var(--ease-out);
}
.speaker:hover .speaker-av { transform: translateY(-4px); }
.speaker-av-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--black-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--cyan);
  border: 2px solid var(--black-elevated);
}
.speaker-name { font-weight: 700; font-size: .88rem; color: var(--white); }
.speaker-role { font-size: .72rem; color: var(--cyan); text-transform: uppercase; letter-spacing: .04em; }

/* ═══════════════════════════════════════════════
   FINAL CTA SECTION
═══════════════════════════════════════════════ */
.final-cta {
  padding: 70px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 123, 255, 0.18) 0%, transparent 65%), var(--black-surface);
  border-top: 1px solid var(--border-subtle);
}

.final-cta .sec-title { margin-bottom: 8px; }
.final-cta-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.pill-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-family: var(--font-h);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .2s ease;
}

/* Efeito Vermelho Piscando para Certificado Obrigatório */
.pill-cert-red {
  background: rgba(255, 59, 48, 0.16);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 59, 48, 0.85);
  box-shadow: 0 0 20px rgba(255, 59, 48, 0.5), inset 0 0 10px rgba(255, 59, 48, 0.2);
  animation: pulse-red-badge 1.5s infinite ease-in-out;
}

@keyframes pulse-red-badge {
  0%, 100% {
    border-color: rgba(255, 59, 48, 1);
    box-shadow: 0 0 24px rgba(255, 59, 48, 0.65), 0 0 8px rgba(255, 59, 48, 0.9), inset 0 0 12px rgba(255, 59, 48, 0.3);
    background: rgba(255, 59, 48, 0.24);
    transform: scale(1.02);
  }
  50% {
    border-color: rgba(255, 59, 48, 0.35);
    box-shadow: 0 0 6px rgba(255, 59, 48, 0.2);
    background: rgba(255, 59, 48, 0.08);
    transform: scale(0.98);
  }
}

.pill-urgent {
  background: rgba(255, 183, 3, 0.08);
  color: var(--gold);
  border: 1px solid rgba(255, 183, 3, 0.35);
}

.blink-dot-small {
  width: 8px;
  height: 8px;
  background: var(--danger);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--danger);
  animation: blink 1.2s infinite;
  display: inline-block;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--black-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 0 24px;
  text-align: center;
  font-size: .85rem;
  color: var(--subtle);
}
.footer-brand {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin: 10px 0;
}
.footer-links a { color: var(--subtle); transition: color .2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-copy { margin-top: 14px; font-size: .78rem; color: rgba(255, 255, 255, 0.3); }

/* ═══════════════════════════════════════════════
   MOBILE STICKY CTA
═══════════════════════════════════════════════ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: rgba(4, 6, 10, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 217, 255, 0.25);
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.8);
  z-index: 800;
}
@media (max-width: 768px) { .mobile-sticky { display: block; } }
.mobile-sticky .btn-cta { width: 100%; font-size: .95rem; padding: 15px 24px; }

/* ═══════════════════════════════════════════════
   SCROLL-REVEAL
═══════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
  will-change: opacity, transform;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }
}
