/* ========================================
   NINJA DA PROMO — Promoções Gerais
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Bebas+Neue&display=swap');

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #00e676;
  --green-dark: #00c853;
  --green-glow: rgba(0, 230, 118, 0.4);
  --gold: #ffd700;
  --gold-light: #ffe566;
  --dark-bg: #050a0e;
  --dark-card: #0b1520;
  --dark-border: #162030;
  --white: #ffffff;
  --text-muted: #8fa3b1;
  --red-accent: #ff3d3d;
  --promo-orange: #ff6d00;
  --promo-purple: #7c3aed;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark-bg);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* === ANIMATED BACKGROUND === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 70, 30, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(124, 58, 237, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 70%, rgba(255, 109, 0, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Geometric pattern overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 230, 118, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 230, 118, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* === TICKER / MARQUEE === */
.ticker-wrap {
  width: 100%;
  background: linear-gradient(90deg, #7c3aed, #ff6d00, #7c3aed);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  z-index: 100;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}

.ticker span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
  padding-right: 60px;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === PARTICLES === */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

/* === MAIN CONTAINER === */
.container {
  position: relative;
  z-index: 10;
  max-width: 560px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  min-height: calc(100vh - 44px);
}

/* === BADGE === */
.badge-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
  border: 1.5px solid rgba(255, 215, 0, 0.45);
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.15); }
  50%       { box-shadow: 0 0 35px rgba(255, 215, 0, 0.35); }
}

/* === TITLE === */
.title {
  font-family: 'Bebas Neue', sans-serif;
  text-align: center;
  line-height: 0.9;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3em;
}

.title-ninja {
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--white);
  text-shadow: 0 0 40px rgba(255,255,255,0.15);
}

.title-da {
  font-size: clamp(1.2rem, 4vw, 2rem);
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.title-promo {
  font-size: clamp(2.5rem, 10vw, 5rem);
  background: linear-gradient(135deg, var(--green) 0%, #00ff8c 50%, var(--green-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.5));
  animation: promo-glow 2.5s ease-in-out infinite;
}

@keyframes promo-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.5)); }
  50%       { filter: drop-shadow(0 0 40px rgba(0, 230, 118, 0.9)); }
}

/* === SUBTITLE === */
.subtitle {
  font-size: clamp(0.8rem, 3.5vw, 1rem);
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.subtitle strong {
  color: var(--gold-light);
}

/* === HERO IMAGE === */
.hero-image-wrap {
  position: relative;
  width: clamp(240px, 65vw, 320px);
  height: clamp(240px, 65vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
}

.glow-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--green) 0%,
    var(--gold) 25%,
    var(--copa-red) 50%,
    var(--copa-blue) 75%,
    var(--green) 100%
  );
  animation: ring-spin 4s linear infinite;
  z-index: -1;
  filter: blur(6px);
  opacity: 0.7;
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
  animation: hero-float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
  background-color: #f5c518; /* fallback matching the yellow bg */
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-8px) scale(1.02); }
}

.crown-shine {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 20%;
  background: radial-gradient(ellipse, rgba(255, 215, 0, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  animation: crown-shine 2.5s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes crown-shine {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

/* === HOOK TEXT === */
.hook-text {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.4rem;
  background: rgba(255, 109, 0, 0.07);
  border: 1px solid rgba(255, 109, 0, 0.25);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.hook-text p {
  font-size: clamp(0.82rem, 3.2vw, 0.95rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.hook-text p strong {
  color: var(--green);
}

/* === BENEFITS === */
.benefits {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  backdrop-filter: blur(10px);
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}

.benefits .icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* === CTA BUTTON === */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 440px;
  padding: 1.15rem 2rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #00e676 0%, #00c853 50%, #00a844 100%);
  color: #003a1a;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.9rem, 3.5vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 0 rgba(0, 230, 118, 0.5),
    0 8px 40px rgba(0, 200, 83, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.3);
  animation: btn-pulse 2s ease-in-out infinite;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: btn-shine 2.8s ease-in-out infinite;
}

@keyframes btn-shine {
  0%   { left: -100%; }
  40%  { left: 130%; }
  100% { left: 130%; }
}

@keyframes btn-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(0, 230, 118, 0.5),
      0 8px 40px rgba(0, 200, 83, 0.45),
      inset 0 1px 0 rgba(255,255,255,0.3);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(0, 230, 118, 0),
      0 8px 60px rgba(0, 200, 83, 0.7),
      inset 0 1px 0 rgba(255,255,255,0.3);
  }
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 0 0 rgba(0, 230, 118, 0.5),
    0 16px 60px rgba(0, 200, 83, 0.65),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.cta-btn:active {
  transform: translateY(0) scale(0.98);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.cta-btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* === SOCIAL PROOF === */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  justify-content: center;
}

.proof-emoji {
  font-size: 1.1rem;
}

.proof-text {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  text-align: center;
}

.proof-divider {
  width: 1px;
  height: 28px;
  background: var(--dark-border);
  flex-shrink: 0;
}

/* === URGENCY BAR === */
.urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ff9800;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.4;
}

.urgency-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3d3d;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(255, 61, 61, 0.5);
  animation: live-dot 1.5s ease-in-out infinite;
}

@keyframes live-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 61, 61, 0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(255, 61, 61, 0); }
}

/* === FOOTER === */
.footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 1.2rem 1rem;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================================
   RESPONSIVE — MOBILE FIRST TWEAKS
   =================================== */
@media (max-width: 480px) {
  .ticker {
    animation: ticker-scroll 15s linear infinite;
  }

  .container {
    padding: 2rem 1.2rem 1.5rem;
    gap: 1.2rem;
  }

  .hero-image-wrap {
    width: clamp(200px, 72vw, 280px);
    height: clamp(200px, 72vw, 280px);
  }

  .benefits {
    padding: 1rem 1.1rem;
    gap: 0.55rem;
  }

  .benefits li {
    font-size: 0.8rem;
  }

  .proof-text {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }

  .social-proof {
    gap: 0.6rem;
    padding: 0.7rem 0.8rem;
  }

  .cta-btn {
    padding: 1.1rem 1.5rem;
    font-size: 0.88rem;
    gap: 0.5rem;
  }

  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 360px) {
  .title-promo {
    font-size: 2.5rem;
  }

  .title-ninja {
    font-size: 2rem;
  }

  .hero-image-wrap {
    width: 190px;
    height: 190px;
  }
}

/* === ENTRY ANIMATIONS === */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.badge-wrap        { animation: fade-up 0.6s ease both; animation-delay: 0.1s; }
.title             { animation: fade-up 0.6s ease both; animation-delay: 0.2s; }
.subtitle          { animation: fade-up 0.6s ease both; animation-delay: 0.3s; }
.hero-image-wrap   { animation: fade-up 0.7s ease both; animation-delay: 0.4s; }
.hook-text         { animation: fade-up 0.6s ease both; animation-delay: 0.48s; }
.benefits          { animation: fade-up 0.6s ease both; animation-delay: 0.55s; }
.cta-btn           { animation: fade-up 0.6s ease both; animation-delay: 0.65s; }
.social-proof      { animation: fade-up 0.6s ease both; animation-delay: 0.75s; }
.urgency           { animation: fade-up 0.6s ease both; animation-delay: 0.85s; }
