@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Anton&display=swap');

:root {
  --bg-dark: #07090F;
  --surface: #121620;
  --surface-glass: rgba(18, 22, 32, 0.6);
  --primary: #00E676; /* Premium Neon Green */
  --primary-glow: rgba(0, 230, 118, 0.4);
  --danger: #FF3B30;
  --text-main: #FFFFFF;
  --text-muted: #8E98A8;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  background-color: #030407;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  background-color: #030407;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

/* Mobile App Container - Tático / Motorsports */
.app-container {
  width: 100%;
  max-width: 480px;
  background-color: #111;
  background-image: radial-gradient(#222 1px, transparent 1px);
  background-size: 20px 20px;
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 50px rgba(0,0,0,1);
  padding-bottom: 140px;
}

.anton {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.text-neon {
  background: linear-gradient(90deg, #00E676, #69FF97);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-danger { color: var(--danger); }

/* Typography */
h1 {
  font-size: 3.2rem;
  line-height: 1.05;
  margin-bottom: 1rem;
}
p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* Sections */
section {
  padding: 40px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

/* Solid Card - Estilo Blindado */
.card, .bullet-item, .chat-review, .faq-item, .offer-box {
  background: linear-gradient(145deg, #1A1A1A, #111);
  border: 2px solid #2A2A2A;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.6), inset 1px 1px 2px rgba(255,255,255,0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

/* Detalhe de "Aço" no topo do card */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: #333;
}

.card:hover {
  transform: translateY(-2px);
  border-color: #FFD600;
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-main);
  letter-spacing: 2px;
}

.card.danger {
  background: rgba(255, 59, 48, 0.03);
  border-color: rgba(255, 59, 48, 0.2);
}

/* Hero */
.hero {
  padding-top: 60px;
  border-bottom: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 59, 48, 0.1);
  color: var(--danger);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 59, 48, 0.2);
  box-shadow: 0 0 15px rgba(255, 59, 48, 0.2);
  text-transform: uppercase;
}

/* Bullets */
.app-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  margin-bottom: 0;
}
.bullet-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 10px rgba(0, 230, 118, 0.2);
}
.bullet-text strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-main);
  font-weight: 600;
}

/* Gallery */
.gallery-wrapper { margin-top: 24px; }
.main-img-box {
  background: #111;
  background: radial-gradient(circle at center, #222 0%, #0a0a0a 100%);
  border-radius: 24px;
  padding: 24px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #2a2a2a;
  margin-bottom: 16px;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.8), 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.main-img-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+') repeat;
  opacity: 0.3;
  pointer-events: none;
}
.main-img-box img {
  max-width: 90%;
  max-height: 90%;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
  position: relative;
  z-index: 2;
}
.thumbs-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
}
.thumbs-row::-webkit-scrollbar { display: none; }
.thumb-box {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #111;
  border: 2px solid #333;
  padding: 10px;
  transition: all 0.3s ease;
  opacity: 0.5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb-box.active {
  opacity: 1;
  border-color: var(--primary);
  background: #1a1a1a;
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.15);
}
.thumb-box img { width: 100%; height: 100%; object-fit: contain; }

/* Chat-like Reviews */
.chat-review {
  border-radius: 24px 24px 24px 4px;
}
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.chat-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
}
.chat-stars { color: #FFD600; font-size: 0.9rem; }
.chat-msg { color: #E2E8F0; font-size: 1rem; }

/* FAQ */
.faq-q {
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #fff;
}
.faq-icon {
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s;
  font-weight: 400;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding-top: 15px;
  color: var(--text-muted);
  display: none;
}
.faq-item.active .faq-a { display: block; border-top: 1px solid var(--border); margin-top: 15px; }

/* Premium Offer Box */
.offer-box {
  background: #111;
  border: 3px solid #00E676;
  border-radius: 12px;
  text-align: center;
  padding: 40px 24px;
  margin-top: 20px;
}
.price-strike {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.price-final {
  font-size: 4.5rem;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
}
.price-installments {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.offer-list {
  text-align: left;
  list-style: none;
  background: rgba(0,0,0,0.4);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.offer-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #E2E8F0;
  font-size: 0.95rem;
}
.offer-list li:last-child { margin-bottom: 0; }
.offer-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}

/* Sticky Bottom Navigation / CTA */
.sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: #000;
  border-top: 3px solid #333;
  padding: 20px 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Botão Estilo Racing / Motorsports */
.btn-primary {
  width: 100%;
  height: 64px;
  background: #00E676;
  color: #000;
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  box-shadow: 0 6px 0 #00B259, 0 15px 20px rgba(0,230,118,0.3);
  transition: all 0.1s ease;
  position: relative;
  overflow: hidden;
}

/* Efeito pulsante no botão */
.btn-primary {
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { 
    box-shadow: 0 6px 0 #00B259, 0 10px 20px rgba(0,230,118,0.25); 
  }
  50% { 
    box-shadow: 0 6px 0 #00B259, 0 10px 35px rgba(0,230,118,0.5); 
    transform: scale(1.02);
  }
}

.btn-primary:active {
  box-shadow: 0 2px 0 #00B259, 0 5px 10px rgba(0,230,118,0.4);
  transform: translateY(4px);
}

.urgency-badge {
  margin-top: 15px;
  color: #FFD600;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #000;
  padding: 8px 20px;
  border-radius: 4px;
  border: 1px dashed #FFD600;
  text-transform: uppercase;
  transform: skewX(-5deg);
}

/* Form Inputs */
input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  padding: 16px 20px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  color: var(--text-main);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,230,118,0.1);
}

/* Modal */
#pix-modal > div {
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
  border-radius: 24px !important;
}

.section-header {
  text-align: center;
  margin-bottom: 25px;
}

.section-header h2 {
  font-size: 2.2rem;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 2.5px;
}
