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

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

:root {
  --bg: #0a0a0f;
  --bg-card: #141419;
  --bg-card-alt: rgba(24, 24, 32, 0.6);
  --border: #1f1f2e;
  --primary: #d4a017;
  --primary-light: rgba(212, 160, 23, 0.1);
  --primary-glow: rgba(212, 160, 23, 0.3);
  --text: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --green: #22c55e;
  --green-dark: #16a34a;
  --red: #ef4444;
  --red-light: rgba(239, 68, 68, 0.2);
  --yellow: #eab308;
  --yellow-light: rgba(234, 179, 8, 0.1);
  --radius: 12px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-wrapper {
  min-height: 100vh;
  padding-bottom: 6rem;
}

/* TOP BANNER */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--bg);
  text-align: center;
  padding: 8px 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 40;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.main-container {
  padding-top: 56px;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.section { margin-bottom: 36px; }

/* HERO */
.hero { text-align: center; padding-top: 24px; }

.profile-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.profile-photo-container {
  position: relative;
  margin-bottom: 12px;
}

.profile-glow {
  position: absolute;
  inset: 0;
  background: var(--primary-glow);
  filter: blur(20px);
  border-radius: 50%;
  transform: scale(1.25);
}

.profile-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.verified-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  z-index: 3;
  background: #3b82f6;
  border-radius: 50%;
  padding: 3px;
  border: 2px solid var(--bg);
  display: flex;
}

.verified-badge svg { width: 14px; height: 14px; fill: white; }

.profile-name { font-size: 18px; font-weight: 700; }

.profile-oficial {
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

/* HEADLINE */
.headline-box {
  margin-top: 16px;
  margin-bottom: 8px;
}

.main-headline {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
  color: white;
  margin-bottom: 8px;
}

.main-sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* SECTION DIVIDER */
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-header .line { flex: 1; height: 1px; background: var(--border); }

.section-header h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: var(--text-secondary);
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 9/16;
  border: 1px solid var(--border);
  animation: gallery-pulse 2.5s ease-in-out infinite;
}

.gallery-item:nth-child(2) { animation-delay: 0.4s; }
.gallery-item:nth-child(3) { animation-delay: 0.8s; }
.gallery-item:nth-child(4) { animation-delay: 1.2s; }

@keyframes gallery-pulse {
  0%, 100% { border-color: var(--border); box-shadow: 0 0 0 0 transparent; }
  50% { border-color: rgba(212, 160, 23, 0.4); box-shadow: 0 0 16px rgba(212, 160, 23, 0.15); }
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  transition: background 0.3s;
  text-align: center;
}

.gallery-item:active .gallery-overlay {
  background: rgba(0,0,0,0.55);
}

.gallery-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-icon {
  width: 24px;
  height: 24px;
  color: white;
  opacity: 0.9;
}

.play-icon {
  fill: white;
  stroke: none;
  margin-left: 3px;
}

.gallery-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-price-tag {
  font-size: 13px;
  font-weight: 700;
  color: white;
  background: var(--primary);
  padding: 3px 12px;
  border-radius: 20px;
}

.gallery-lock-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  padding: 6px;
  display: flex;
}

.gallery-lock-badge svg {
  color: white;
  opacity: 0.8;
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}

.modal-card {
  background: #18181b;
  border: 1px solid #2a2a35;
  border-radius: 16px;
  padding: 28px 24px;
  width: 100%;
  max-width: 380px;
  position: relative;
  text-align: center;
  animation: slideUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #71717a;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.modal-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.modal-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.modal-price {
  margin-bottom: 16px;
}

.modal-price-value {
  font-size: 36px;
  font-weight: 900;
  color: white;
}

.modal-buy-btn {
  margin-bottom: 16px;
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.modal-divider span {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-pack-offer {
  background: var(--primary-light);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: var(--radius);
  padding: 16px;
}

.pack-savings {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.pack-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.pack-old-price {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pack-new-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
}

/* ========== PACK BOX ========== */
.pack-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pack-badge-ribbon {
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pack-title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.pack-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.pack-items-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.pack-item-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  color: var(--text-secondary);
}

.pack-item-tag span {
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 4px;
}

/* PRICE */
.price-section {
  text-align: center;
  margin: 16px 0;
}

.price-old {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-new {
  font-size: 44px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin: 4px 0;
}

.price-off {
  display: inline-block;
  background: var(--red-light);
  color: #f87171;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 6px;
}

/* URGENCY */
.urgency-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
}

.viewers-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 5px 14px;
  border-radius: 8px;
}

.viewers-indicator svg {
  color: #38bdf8;
  flex-shrink: 0;
}

.viewers-indicator span {
  font-weight: 700;
}

.spots-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #d4d4d8;
}

.live-dot {
  position: relative;
  width: 12px;
  height: 12px;
}

.live-dot .ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f87171;
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.live-dot .dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.spots-number {
  color: #f87171;
  font-weight: 700;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  animation: pulse-subtle 2s ease-in-out infinite;
}

@keyframes pulse-subtle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* CTA */
.cta-primary {
  display: block;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
  transition: transform 0.2s;
}

.cta-primary:hover { transform: scale(1.02); }
.cta-primary:active { transform: scale(0.98); }

.cta-primary .sub-text {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 2px;
}

.cta-gold {
  display: block;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--bg);
  font-size: 14px;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: transform 0.2s;
}

.cta-gold:hover { transform: scale(1.02); }
.cta-gold:active { transform: scale(0.95); }

/* TRUST */
.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.trust-item svg { width: 12px; height: 12px; }

/* STEPS */
.steps-wrapper {
  position: relative;
  padding-left: 32px;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}

.step {
  position: relative;
  margin-bottom: 24px;
}

.step-number {
  position: absolute;
  left: -38px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 4px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--primary);
}

.step:last-child .step-number {
  background: var(--primary);
  color: var(--bg);
}

.step h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.step p { font-size: 12px; color: var(--text-muted); }

/* WARNING */
.warning-box {
  background: var(--yellow-light);
  border: 1px solid rgba(234, 179, 8, 0.2);
  padding: 12px;
  border-radius: var(--radius);
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.warning-box .icon { flex-shrink: 0; margin-top: 2px; font-size: 16px; }

.warning-box p {
  font-size: 11px;
  color: rgba(253, 224, 71, 0.8);
  line-height: 1.5;
}

.warning-box strong { color: rgba(253, 224, 71, 1); }

/* REVIEWS */
.review-card {
  background: var(--bg-card-alt);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 14px;
  border-radius: var(--radius);
  margin-bottom: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-weight: 700;
  font-size: 11px;
}

.review-name { font-size: 13px; font-weight: 700; }
.review-verified { font-size: 10px; color: #4ade80; }

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars svg {
  width: 12px;
  height: 12px;
  fill: var(--primary);
  color: var(--primary);
}

.review-text {
  font-size: 13px;
  color: #d4d4d8;
  font-style: italic;
}

/* FINAL CTA */
.final-cta-box {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  text-align: center;
}

.final-cta-box h2 { font-size: 20px; font-weight: 900; }

.final-cta-box .desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 12px 0 20px;
  line-height: 1.5;
}

.final-cta-box .highlight {
  color: var(--primary);
  font-weight: 700;
}

.pix-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  margin-top: 16px;
}

.pix-badge svg { width: 20px; height: 20px; color: white; }
.pix-badge span { font-family: monospace; font-weight: 700; font-size: 16px; color: white; }

/* FOOTER */
.page-footer {
  text-align: center;
  font-size: 11px;
  color: #3f3f46;
  padding: 32px 0;
}

.page-footer p + p { margin-top: 8px; }

/* FLOATING NOTIFICATION */
.floating-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  width: 85%;
  max-width: 360px;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.floating-notification.visible { opacity: 1; }
.floating-notification.hidden { opacity: 0; }

.notification-card {
  background: rgba(20, 20, 25, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid #3f3f46;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.notification-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
}

.notification-stars svg { width: 14px; height: 14px; fill: #eab308; color: #eab308; }

.notification-name { font-size: 13px; color: white; }
.notification-name strong { color: var(--primary); }
.notification-text { font-size: 13px; color: #d4d4d8; margin-top: 4px; }

.notification-badge {
  font-size: 10px;
  color: #4ade80;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
.delay-5 { animation-delay: 0.5s; opacity: 0; }
