/* ============================================
   FlashPoupe VIP — Premium Redesign
   ============================================ */

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

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

:root {
  --bg:        #060608;
  --surface:   #0e0e12;
  --surface2:  #14141a;
  --border:    rgba(255,255,255,.07);
  --orange:    #ff7c20;
  --orange2:   #ffb830;
  --gold:      #ffd060;
  --text:      #f2ede6;
  --muted:     #6e6860;
  --muted2:    #9e9080;
  --wpp:       #25d366;
  --tg:        #2aabee;
  --radius:    20px;
  --ease:      cubic-bezier(.25,.46,.45,.94);
}

html { -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

/* ─── FUNDO ─── */
.bg-wrap {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
}

#sparks {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
}

.orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,124,32,.18), transparent 70%);
  top: -180px; left: 50%;
  transform: translateX(-50%);
  animation: orb-drift 9s ease-in-out infinite alternate;
}

.orb2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,208,96,.12), transparent 70%);
  bottom: 10%; right: -80px;
  animation: orb-drift 12s ease-in-out infinite alternate-reverse;
}

.orb3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(42,171,238,.08), transparent 70%);
  bottom: 30%; left: -60px;
  animation: orb-drift 8s ease-in-out infinite alternate;
}

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, 30px) scale(1.1); }
}

/* GRID LINHAS */
.grid-lines {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,124,32,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,124,32,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* ─── CONTAINER ─── */
.container {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 460px;
  padding: 3rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* ─── LOGO ─── */
.logo-wrap {
  position: relative;
  width: 108px; height: 108px;
  display: flex; align-items: center; justify-content: center;
  animation: pop-in .7s var(--ease) both;
}

.logo-ring {
  width: 100%; height: 100%;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(from 0deg, var(--orange), var(--gold), var(--orange2), var(--orange));
  animation: ring-spin 5s linear infinite;
  box-shadow: 0 0 30px rgba(255,124,32,.45), 0 0 60px rgba(255,124,32,.18);
}

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

.logo-img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: var(--bg);
}

.logo-fallback {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #1c0a00, #2e1400);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--orange);
}

.logo-pulse {
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,124,32,.35);
  animation: pulse-ring 2.4s ease-out infinite;
}

.logo-pulse.p2 {
  inset: -22px;
  border-color: rgba(255,124,32,.15);
  animation-delay: .6s;
}

@keyframes pulse-ring {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.25); }
}

/* ─── MARCA ─── */
.brand-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fade-up .6s .15s var(--ease) both;
}

.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 3px;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 40px rgba(255,124,32,.3);
}

.brand-name span {
  background: linear-gradient(90deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,124,32,.1);
  border: 1px solid rgba(255,124,32,.25);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange2);
}

.chip-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: dot-blink 1.6s ease-in-out infinite;
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* ─── HEADLINE ─── */
.headline-wrap {
  text-align: center;
  animation: fade-up .6s .25s var(--ease) both;
}

.headline-eyebrow {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 6px;
}

.headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  line-height: 1;
  margin-bottom: 16px;
}

.hl-line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 4px;
  color: var(--muted);
}

.hl-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5.5rem;
  letter-spacing: -2px;
  line-height: .9;
  background: linear-gradient(160deg, var(--gold) 0%, var(--orange) 60%, #ff4500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255,124,32,.5));
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(255,124,32,.5)); }
  50%       { filter: drop-shadow(0 0 35px rgba(255,180,50,.7)); }
}

.headline-sub {
  font-size: .92rem;
  color: var(--muted2);
  line-height: 1.65;
}

.headline-sub strong { color: var(--orange2); font-weight: 700; }

/* ─── PROVA SOCIAL ─── */
.social-proof {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  animation: fade-up .6s .3s var(--ease) both;
}

.proof-item {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  padding: 14px 10px;
}

.proof-item strong {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.proof-item span {
  font-size: .7rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* ─── LABEL SEÇÃO ─── */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  align-self: flex-start;
  animation: fade-up .6s .35s var(--ease) both;
}

.section-label svg { color: var(--orange); }

/* ─── BOTÕES ─── */
.links {
  width: 100%;
  display: flex; flex-direction: column; gap: 10px;
}

.btn {
  position: relative;
  display: flex; align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}

/* Shine sweep */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  skewX(-15deg);
  transition: none;
  animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
  0%, 60%, 100% { left: -80%; }
  70%           { left: 130%; }
}

.btn:hover {
  transform: translateY(-3px) scale(1.015);
}

.btn:active { transform: scale(.97); }

.btn-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}

.btn-body {
  flex: 1;
  display: flex; flex-direction: column; gap: 2px;
}

.btn-body strong {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
}

.btn-body small {
  font-size: .72rem;
  font-weight: 400;
  opacity: .8;
  line-height: 1.3;
}

.btn-arrow {
  opacity: .6;
  transition: transform .2s var(--ease), opacity .2s;
  flex-shrink: 0;
}

.btn:hover .btn-arrow { transform: translateX(4px); opacity: 1; }

/* Badge WhatsApp (canto superior direito) */
.btn-wpp-badge {
  position: absolute;
  top: 10px; right: 14px;
  width: 18px; height: 18px;
  opacity: .5;
}

.btn-wpp-badge svg { width: 100%; height: 100%; }

/* Cores individuais */
.btn-lifestyle {
  background: linear-gradient(135deg, #1a6b3a 0%, #0d3d20 100%);
  border-color: rgba(37,211,102,.2);
  box-shadow: 0 4px 24px rgba(37,211,102,.15);
  animation: fade-up .5s .38s var(--ease) both;
}
.btn-lifestyle:hover { box-shadow: 0 10px 40px rgba(37,211,102,.28); }

.btn-tech {
  background: linear-gradient(135deg, #0c3d6e 0%, #061e38 100%);
  border-color: rgba(14,165,233,.2);
  box-shadow: 0 4px 24px rgba(14,165,233,.12);
  animation: fade-up .5s .46s var(--ease) both;
}
.btn-tech:hover { box-shadow: 0 10px 40px rgba(14,165,233,.24); }

.btn-bebe {
  background: linear-gradient(135deg, #6b1a45 0%, #3d0e28 100%);
  border-color: rgba(244,114,182,.2);
  box-shadow: 0 4px 24px rgba(244,114,182,.12);
  animation: fade-up .5s .54s var(--ease) both;
}
.btn-bebe:hover { box-shadow: 0 10px 40px rgba(244,114,182,.24); }

.btn-casa {
  background: linear-gradient(135deg, #6b3a0c 0%, #3d1e06 100%);
  border-color: rgba(251,146,60,.2);
  box-shadow: 0 4px 24px rgba(251,146,60,.12);
  animation: fade-up .5s .62s var(--ease) both;
}
.btn-casa:hover { box-shadow: 0 10px 40px rgba(251,146,60,.24); }

/* ─── CTA FINAL ─── */
.cta-final {
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  animation: fade-up .5s .75s var(--ease) both;
}

.cta-final strong { color: var(--orange2); }

/* ─── FOOTER ─── */
.footer {
  text-align: center;
  display: flex; flex-direction: column; gap: 6px;
  animation: fade-up .5s .8s var(--ease) both;
}

.footer-logos {
  display: flex; align-items: center;
  justify-content: center; gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .5px;
}

.footer p {
  font-size: .68rem;
  color: var(--muted);
  opacity: .5;
}

/* ─── ANIMAÇÕES ─── */
@keyframes pop-in {
  from { opacity: 0; transform: scale(.7); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVO ─── */
@media (max-width: 480px) {
  .container { padding: 2.5rem 1.25rem 2rem; gap: 1.25rem; }
  .logo-wrap { width: 90px; height: 90px; }
  .brand-name { font-size: 2.5rem; }
  .hl-big { font-size: 4.5rem; }
  .btn { padding: 14px 16px; }
  .btn-body strong { font-size: .88rem; }
  .btn-body small  { font-size: .68rem; }
  .proof-item strong { font-size: 1.1rem; }
}

@media (min-width: 768px) {
  .container { padding: 4rem 2rem 3rem; }
  .hl-big { font-size: 6.5rem; }
}
