/* ========================================
   DESIGN SYSTEM — Pack Figurinhas 2026 PDF
   ======================================== */

:root {
  --bg-primary: #050d08; /* Deep green-black */
  --bg-secondary: #0a170f; /* Dark forest green */
  --bg-card: rgba(255, 255, 255, 0.03);
  --gold: #f5c842; /* Premium Gold */
  --gold-dark: #c9a227;
  --gold-glow: rgba(245, 200, 66, 0.3);
  --neon: #2efc80; /* Vibrant grass neon green */
  --neon-glow: rgba(46, 252, 128, 0.25);
  --green: #00e676;
  --red: #ff3040;
  --white: #ffffff;
  --text: #e0e6e2; /* Light grayish green text */
  --text-muted: #8e9c94;
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.02);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* UTILITY CLASSES */
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.text-neon { color: var(--neon); }
.mt-large { margin-top: 48px; }

.glow-text {
  text-shadow: 0 0 20px rgba(245, 200, 66, 0.4), 0 0 60px rgba(245, 200, 66, 0.1);
}

.text-left { text-align: left; }

/* ========== TICKER TAPE ========== */
.ticker-wrap {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  overflow: hidden;
  white-space: nowrap;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.ticker {
  display: inline-block;
  animation: ticker-scroll 35s linear infinite;
}

.ticker-inner {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  color: var(--bg-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 38px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  box-shadow: 0 4px 25px rgba(245, 200, 66, 0.35);
  font-size: 16px;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(245, 200, 66, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 48px;
  font-size: 18px;
}

.pulse-anim {
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 25px rgba(245, 200, 66, 0.35); }
  50% { box-shadow: 0 4px 45px rgba(245, 200, 66, 0.65), 0 0 60px rgba(245, 200, 66, 0.2); }
}

/* ========== GLASS CARD ========== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ========== SECTION HEADER GLOBAL ========== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  color: var(--white);
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== HERO SECTION ========== */
.hero {
  padding: 130px 0 80px;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(46, 252, 128, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 50% 100%, rgba(245, 200, 66, 0.04) 0%, transparent 70%),
              var(--bg-primary);
  overflow: hidden;
}

.hero-bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

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

.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(245,200,66,0.18), rgba(245,200,66,0.05));
  border: 1px solid rgba(245,200,66,0.3);
  color: var(--gold);
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 84px);
  line-height: 0.95;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 19px;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.policy-notice {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 24px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  opacity: 0.8;
}

/* VIDEO PRESENTATION */
.video-wrapper {
  position: relative;
  max-width: 320px;
  margin: 0 auto 36px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 0.8s ease 0.5s both;
}

.video-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold), var(--neon), var(--gold));
  border-radius: calc(var(--radius) + 2px);
  z-index: -1;
  opacity: 0.6;
  filter: blur(8px);
  animation: glowRotate 8s linear infinite;
}

@keyframes glowRotate {
  0% { filter: blur(8px) hue-rotate(0deg); }
  100% { filter: blur(8px) hue-rotate(360deg); }
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  aspect-ratio: 9/16;
  object-fit: cover;
}

.unmute-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.unmute-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

/* ========== CAROUSEL & STYLIZED CARDS ========== */
.album-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.carousel-container {
  overflow: hidden;
  padding: 30px 0;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: carousel-slide 25s linear infinite;
  width: max-content;
}

.player-card {
  flex-shrink: 0;
  width: 220px;
  transition: transform 0.4s ease;
}
.player-card:hover {
  transform: scale(1.08) translateY(-8px);
}

.card-inner {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: var(--transition);
  background: #0d1e13;
}
.card-inner:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 35px rgba(245, 200, 66, 0.3);
}

.card-inner img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

@keyframes carousel-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* ========== BENEFITS SECTION ========== */
.benefits-section {
  padding: 90px 0;
  background: var(--bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.feature-card {
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(46, 252, 128, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.feature-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(46, 252, 128, 0.15), rgba(46, 252, 128, 0.03));
  color: var(--neon);
  font-size: 26px;
  border: 1px solid rgba(46, 252, 128, 0.2);
}

.feature-title {
  font-weight: 800;
  font-size: 19px;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== WHAT YOU RECEIVE SPLIT ========== */
.included-section {
  padding: 90px 0;
  background: var(--bg-secondary);
}

.included-split {
  display: flex;
  align-items: center;
  gap: 50px;
}

.included-text {
  flex: 1;
}

.included-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-img {
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--glass-border);
}

.included-list {
  list-style: none;
  margin-top: 30px;
}

.included-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--text);
}

.list-icon {
  color: var(--neon);
  font-size: 22px;
  margin-top: 2px;
}

.list-info {
  line-height: 1.6;
}

.list-info strong {
  color: var(--white);
  display: block;
  font-size: 17px;
  margin-bottom: 2px;
}

/* ========== COMPARISON SECTION ========== */
.comparison-section {
  padding: 90px 0;
  background: var(--bg-primary);
}

.comparison-table-wrapper {
  margin-top: 48px;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: var(--bg-secondary);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.comparison-table th, 
.comparison-table td {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.feat-title {
  font-weight: 700;
  color: var(--white);
  width: 30%;
}

.col-traditional {
  color: #ff8888;
}

.col-digital {
  color: var(--neon);
  font-weight: 700;
}

.val-bad {
  color: var(--text-muted);
  font-size: 15px;
}

.val-good {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.comparison-table tbody tr {
  transition: var(--transition);
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  padding: 90px 0;
  background: var(--bg-secondary);
}

.ig-comments-wrapper {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 30px;
  text-align: left;
}

.ig-comment {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ig-comment:first-child { padding-top: 0; }
.ig-comment:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ig-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 20px;
}

.ig-content {
  flex: 1;
  min-width: 0;
}

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

.ig-username {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}

.ig-time {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  background: rgba(245, 200, 66, 0.1);
  padding: 2px 10px;
  border-radius: 20px;
}

.ig-text {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.ig-actions {
  display: flex;
  gap: 20px;
}
.ig-actions span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.ig-actions span:hover {
  color: var(--white);
}

.ig-like {
  flex-shrink: 0;
  padding-top: 20px;
  font-size: 16px;
  color: var(--gold);
  cursor: pointer;
}

/* ========== PRICING / OFFER SECTION ========== */
.price-section {
  padding: 100px 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(46, 252, 128, 0.06) 0%, transparent 60%),
              var(--bg-primary);
}

.pricing-card-wrapper {
  max-width: 520px;
  margin: 48px auto 0;
}

.pricing-card {
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-color: rgba(245, 200, 66, 0.25);
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--gold), transparent 30%, transparent 70%, var(--neon));
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.18;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35, #ff3040);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: pulse-badge 2s ease-in-out infinite;
  text-transform: uppercase;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

.price-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.currency {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  padding-top: 10px;
}

.amount {
  font-family: var(--font-display);
  font-size: 90px;
  color: var(--gold);
  line-height: 1;
}

.cents {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  padding-top: 10px;
}

.price-label {
  font-weight: 800;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.price-features li:last-child {
  border-bottom: none;
}
.price-features li i {
  font-size: 16px;
  flex-shrink: 0;
}

.warranty-badge {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(46, 252, 128, 0.06);
  border: 1px solid rgba(46, 252, 128, 0.15);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
  text-align: left;
}

.warranty-badge i {
  color: var(--neon);
  font-size: 22px;
  flex-shrink: 0;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.trust-item i {
  color: var(--neon);
  font-size: 14px;
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 90px 0;
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-question i {
  transition: transform 0.3s ease;
  color: var(--neon);
  font-size: 14px;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-answer p {
  padding: 0 0 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ========== FOOTER ========== */
#main-footer {
  padding: 48px 0;
  text-align: center;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-links {
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links a {
  margin: 0 10px;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========== SALES NOTIFICATION (CRO Elements) ========== */
.sales-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(10, 23, 15, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(46, 252, 128, 0.15);
  border-radius: 16px;
  padding: 14px 20px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1), opacity 0.5s ease;
  max-width: 360px;
  text-align: left;
}

.sales-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notif-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 18px;
  flex-shrink: 0;
}

.notif-content {
  flex: 1;
  min-width: 0;
}

.notif-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notif-action {
  font-size: 13px;
  color: var(--text-muted);
  margin: 2px 0 0;
}

.notif-time {
  font-size: 11px;
  color: var(--neon);
  margin: 2px 0 0;
}

.notif-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}
.notif-close:hover {
  color: var(--white);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ========== RESPONSIVE MEDIA QUERIES ========== */
@media (max-width: 992px) {
  .included-split {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .included-text {
    width: 100%;
  }
  .included-image {
    width: 100%;
    max-width: 500px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 110px 0 60px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .btn {
    padding: 16px 32px;
    font-size: 15px;
    width: 100%;
  }
  .btn-large {
    padding: 18px 36px;
    font-size: 17px;
  }
  .player-card {
    width: 160px;
  }
  .pricing-card {
    padding: 36px 24px;
  }
  .amount {
    font-size: 72px;
  }
  .trust-badges {
    gap: 12px;
  }
  .trust-item {
    font-size: 11px;
  }
  .ig-comments-wrapper {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(38px, 9vw, 56px);
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .section-title {
    font-size: clamp(28px, 6vw, 38px);
  }
  .section-desc {
    font-size: 15px;
  }
  .sales-notification {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }
}
