/* ============================================================
   MODÃO OFFLINE — Landing Page Stylesheet
   Dark warm sertanejo aesthetic
   ============================================================ */

/* ─── CSS VARIABLES ─── */
:root {
  --amber: #e8771a;
  --amber-dark: #c9572a;
  --amber-glow: rgba(232, 119, 26, 0.2);
  --red-earthy: #d44b5e;
  --purple-warm: #8b5cf6;
  --bg-dark: #0d0a07;
  --bg-card: #16120d;
  --bg-card2: #1e1810;
  --bg-section: #110e09;
  --text-primary: #f5ede0;
  --text-muted: #a89880;
  --border: rgba(232, 119, 26, 0.15);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Lato', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-amber: 0 0 40px rgba(232, 119, 26, 0.15);
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  padding-top: 50px;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlight { color: var(--amber); }
.centered { text-align: center; }

/* ─── STICKY BAR ─── */
@keyframes pulse-glow {
  0% { box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(234, 88, 12, 0.8); }
  100% { box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4); }
}



@keyframes shine {
  to {
    background-position: 200% center;
  }
}



.sticky-btn {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: var(--transition);
}
.sticky-btn:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(232,119,26,0.4); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-img { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(13, 10, 7, 0.55) 0%,
    rgba(13, 10, 7, 0.3) 40%,
    rgba(13, 10, 7, 0.75) 80%,
    rgba(13, 10, 7, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 80px 24px 60px;
}

.badge-top {
  display: inline-block;
  background: rgba(232, 119, 26, 0.15);
  border: 1px solid rgba(232, 119, 26, 0.4);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.9;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.title-outline {
  display: block;
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -4px;
  text-shadow: 0 4px 30px rgba(232, 119, 26, 0.4);
}

.title-solid {
  display: block;
  font-size: clamp(4.5rem, 16vw, 11rem);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -4px;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 16px;
  color: var(--text-primary);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-sub strong { color: var(--amber); }

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-bullets {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  font-size: 0.9rem;
  color: var(--text-muted);
  animation: fadeInUp 0.8s ease 0.35s both;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 18px 40px;
  border-radius: 50px;
  margin-bottom: 16px;
  box-shadow: 0 8px 40px rgba(232, 119, 26, 0.45);
  transition: var(--transition);
  animation: fadeInUp 0.8s ease 0.4s both;
  position: relative;
  overflow: hidden;
}

.btn-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(232, 119, 26, 0.55); }
.btn-hero:hover::after { opacity: 1; }

.btn-icon { font-size: 0.8em; }

.hero-price-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  animation: fadeInUp 0.8s ease 0.5s both;
}
.hero-price-hint strong { color: var(--amber); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
  opacity: 0.7;
}

/* ─── SECTION TITLES ─── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

.badge-section {
  display: inline-block;
  background: var(--amber-glow);
  border: 1px solid rgba(232,119,26,0.4);
  color: var(--amber);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.centered-badge { display: block; text-align: center; }

/* ─── PAIN SECTION ─── */
.pain-section {
  padding: 100px 0 80px;
  background: var(--bg-section);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin: 48px 0 40px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.pain-card:hover {
  border-color: rgba(232,119,26,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pain-icon { font-size: 2.2rem; margin-bottom: 12px; }
.pain-card p { font-size: 0.95rem; color: var(--text-muted); }

.pain-solution {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(232,119,26,0.08), rgba(201,87,42,0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 1.2rem;
}
.pain-solution strong { color: var(--amber); }

/* ─── PRODUCT INTRO ─── */
.product-intro {
  padding: 100px 0;
  background: var(--bg-dark);
}

.product-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.product-intro-text .badge-section { margin-bottom: 20px; }

.product-intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.product-intro-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.benefit-list { display: flex; flex-direction: column; gap: 12px; }
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.benefit-list li:hover { border-color: rgba(232,119,26,0.3); color: var(--text-primary); }

.product-intro-img {
  position: relative;
}

.product-intro-img img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 30px rgba(232,119,26,0.4);
}
.fb-number { font-size: 2.5rem; font-weight: 900; line-height: 1; color: #fff; }
.fb-text { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.85); text-align: center; }

/* ─── USE SECTION ─── */
.use-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.use-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.use-card:hover {
  border-color: var(--amber);
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(232,119,26,0.15);
}

.use-emoji { font-size: 2.4rem; margin-bottom: 12px; }
.use-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.use-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ─── CATEGORIES ─── */
.categories-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cat-color), transparent);
  transition: var(--transition);
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: rgba(232,119,26,0.25);
}

.cat-card:hover::before { height: 4px; }

.cat-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  font-family: var(--font-display);
}
.cat-icon { font-size: 2rem; margin-bottom: 12px; }
.cat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.cat-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ─── WHERE SECTION ─── */
.where-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.where-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 48px;
  margin-bottom: 64px;
}

.where-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.where-card.reverse { direction: rtl; }
.where-card.reverse > * { direction: ltr; }

.where-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.where-text h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.where-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

.device-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.device-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}
.device-item:hover { border-color: var(--amber); transform: translateY(-4px); }
.device-icon { font-size: 2rem; margin-bottom: 10px; }
.device-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.device-item p { font-size: 0.8rem; color: var(--text-muted); }

/* ─── BONUS SECTION ─── */
.bonus-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0b06 100%);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.bonus-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
  text-align: center;
}

.bonus-card:hover {
  border-color: rgba(232,119,26,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(232,119,26,0.1);
}

.bonus-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.bonus-icon { font-size: 2.5rem; margin: 16px 0 14px; }

.bonus-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.bonus-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bonus-card:hover .bonus-img {
  transform: scale(1.05);
}
.bonus-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.bonus-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }

.bonus-price { display: flex; align-items: center; justify-content: center; gap: 10px; }
.price-de { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; }
.price-gratis {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

/* ─── PRICE / CTA SECTION ─── */
.price-section {
  padding: 100px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.price-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.3;
  animation: float 8s infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; top: 70%; animation-delay: 1.5s; }
.particle:nth-child(3) { left: 60%; top: 15%; animation-delay: 3s; }
.particle:nth-child(4) { left: 80%; top: 60%; animation-delay: 4.5s; }
.particle:nth-child(5) { left: 50%; top: 85%; animation-delay: 2s; }
.particle:nth-child(6) { left: 90%; top: 35%; animation-delay: 6s; }

.price-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--bg-card2), #1a1208);
  border: 1px solid rgba(232,119,26,0.3);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(232,119,26,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
}

.price-header h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.what-you-get {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
  text-align: left;
}

.wg-col h4 { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.wg-col ul { display: flex; flex-direction: column; gap: 8px; }
.wg-col li { font-size: 0.9rem; color: var(--text-muted); }

.price-strikethrough-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.price-was { font-size: 0.95rem; color: var(--text-muted); }
.price-was s { color: #7a6a5a; }
.price-arrow { color: var(--amber); font-size: 1.2rem; }

.price-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
  line-height: 1;
}

.price-currency { font-size: 2rem; font-weight: 700; color: var(--amber); margin-top: 16px; }
.price-value { font-size: 7rem; font-weight: 900; color: var(--text-primary); font-family: var(--font-display); line-height: 1; }
.price-cents { font-size: 2.5rem; font-weight: 700; color: var(--amber); margin-top: 16px; }

.price-conditions {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f59e0b, var(--amber), var(--amber-dark));
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 20px 44px;
  border-radius: 50px;
  box-shadow: 0 8px 40px rgba(232, 119, 26, 0.5);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}

.btn-buy::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.6s;
}

.btn-buy:hover { transform: translateY(-3px); box-shadow: 0 16px 60px rgba(232, 119, 26, 0.6); }
.btn-buy:hover::before { left: 100%; }

.btn-play { font-size: 0.85em; }

.secure-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius);
  padding: 16px 24px;
}
.guarantee-icon { font-size: 2rem; }
.guarantee-icon .selo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.guarantee-text { display: flex; flex-direction: column; text-align: left; }
.guarantee-text strong { font-size: 0.95rem; }
.guarantee-text span { font-size: 0.8rem; color: var(--text-muted); }

/* ─── HOW IT WORKS ─── */
.how-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.step-card:hover { border-color: var(--amber); transform: translateY(-4px); box-shadow: 0 0 30px rgba(232,119,26,0.12); }

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step-icon { font-size: 2rem; margin-bottom: 12px; }

.step-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
}

.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.step-card:hover .step-img {
  transform: scale(1.06);
}
.step-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.8rem; color: var(--text-muted); }

.step-arrow {
  font-size: 1.5rem;
  color: var(--amber);
  opacity: 0.5;
}

/* ─── FOR WHOM ─── */
.forwhom-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.fw-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.95rem;
  transition: var(--transition);
}
.fw-item:hover { border-color: var(--amber); transform: translateX(4px); }

/* ─── IMAGINE SECTION ─── */
.imagine-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.imagine-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.imagine-card {
  background: linear-gradient(145deg, var(--bg-card), #1a1208);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.imagine-card:hover {
  border-color: rgba(232,119,26,0.4);
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(232,119,26,0.1);
}

.imagine-emoji { font-size: 3rem; margin-bottom: 16px; }
.imagine-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.imagine-card strong { color: var(--text-primary); }

/* ─── FAQ ─── */
.faq-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.faq-list {
  max-width: 700px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(232,119,26,0.3); }
.faq-item.open { border-color: rgba(232,119,26,0.4); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { color: var(--amber); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--amber);
  transition: var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--amber-glow); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 200px; }

/* ─── FINAL CTA ─── */
.final-cta {
  padding: 100px 0;
  background: radial-gradient(ellipse at center, #1a0f05 0%, var(--bg-dark) 70%);
  text-align: center;
  border-top: 1px solid var(--border);
}

.final-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 32px;
  line-height: 1.2;
}

.final-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.final-features span {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
}

.final-price {
  margin-bottom: 40px;
}

.fp-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.fp-value {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

.fp-currency { font-size: 2.5rem; font-weight: 700; color: var(--amber); margin-top: 20px; }
.fp-number { font-size: 9rem; font-weight: 900; color: var(--text-primary); font-family: var(--font-display); line-height: 1; }
.fp-cents { font-size: 3rem; font-weight: 700; color: var(--amber); margin-top: 24px; }

.final-btn { max-width: 500px; }

.final-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 20px 0 16px;
  font-style: italic;
}

.final-guarantee {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 12px 24px;
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
}

/* ─── FOOTER ─── */
.footer {
  padding: 48px 0;
  background: #080604;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand { font-size: 1.3rem; font-weight: 800; letter-spacing: 1px; margin-bottom: 8px; }
.footer-tagline { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.footer-legal { font-size: 0.75rem; color: #5a4e42; }

/* ─── ANIMATIONS ─── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.2); opacity: 0.6; }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .product-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-intro-img { order: -1; }
  .floating-badge { bottom: -16px; right: 16px; }

  .where-card,
  .where-card.reverse { grid-template-columns: 1fr; direction: ltr; }

  .device-strip { grid-template-columns: repeat(2, 1fr); }

  .what-you-get { grid-template-columns: 1fr; }

  .price-box { padding: 40px 24px; }

  .steps-grid { gap: 8px; }
  .step-arrow { display: none; }
  .step-card { min-width: 140px; }

  .hero-bullets { gap: 12px; font-size: 0.8rem; }

  .btn-hero { padding: 15px 28px; font-size: 0.95rem; }
  .btn-buy { padding: 18px 28px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
  
  @keyframes pulse-glow {
  0% { box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(234, 88, 12, 0.8); }
  100% { box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4); }
}

.sticky-bar {
  background: linear-gradient(90deg, #ea580c, #c2410c, #ea580c);
  background-size: 200% auto;
  animation: pulse-glow 2s infinite, shine 3s linear infinite;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}
  .price-value { font-size: 5rem; }
  .fp-number { font-size: 7rem; }
  .categories-grid { grid-template-columns: 1fr; }
}
