/* ============================================
   CAIXA CARTONADA — LANDING PAGE
   Design System & Complete Styles
   Mobile-first | Dark Premium | Glassmorphism
   ============================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Colors */
  --primary: #9b59b6;
  --primary-dark: #7d3c98;
  --primary-light: #d2b4de;
  --primary-ultralight: rgba(155, 89, 182, 0.08);

  --accent: #e91e90;
  --accent-glow: #ff6bb5;
  --accent-dark: #c4177a;

  --bg-dark: #0a0a14;
  --bg-card: #12121f;
  --bg-section-alt: #0e0e1a;
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-border: rgba(255, 255, 255, 0.07);

  --text-white: #f5f5f7;
  --text-muted: #8e8ea0;
  --text-highlight: #f5c842;
  --text-danger: #ff4d6a;

  --success: #34d399;
  --success-bg: rgba(52, 211, 153, 0.1);

  /* Gradients */
  --gradient-hero: linear-gradient(
    160deg,
    #0a0a14 0%,
    #12121f 40%,
    #1e0e2e 100%
  );
  --gradient-cta: linear-gradient(135deg, #e91e90 0%, #9b59b6 100%);
  --gradient-cta-hover: linear-gradient(135deg, #ff6bb5 0%, #b06ac5 100%);
  --gradient-price: linear-gradient(
    160deg,
    #1e0e2e 0%,
    #0a0a14 50%,
    #12121f 100%
  );
  --gradient-accent-bar: linear-gradient(
    90deg,
    #e91e90 0%,
    #9b59b6 50%,
    #e91e90 100%
  );
  --gradient-text: linear-gradient(
    135deg,
    #e91e90 0%,
    #9b59b6 50%,
    #ff6bb5 100%
  );

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --fs-hero: clamp(1.75rem, 5vw, 3rem);
  --fs-h2: clamp(1.5rem, 4vw, 2.25rem);
  --fs-h3: clamp(1.25rem, 3vw, 1.75rem);
  --fs-h4: clamp(1.1rem, 2.5vw, 1.375rem);
  --fs-body: clamp(0.95rem, 1.5vw, 1.125rem);
  --fs-small: clamp(0.8rem, 1.2vw, 0.875rem);
  --fs-price-big: clamp(3rem, 10vw, 5rem);
  --fs-badge: clamp(0.7rem, 1vw, 0.8rem);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-section: clamp(3rem, 8vw, 6rem);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow-accent: 0 0 40px rgba(233, 30, 144, 0.3);
  --shadow-glow-primary: 0 0 40px rgba(155, 89, 182, 0.2);
  --shadow-glow-cta:
    0 4px 30px rgba(233, 30, 144, 0.4), 0 0 60px rgba(233, 30, 144, 0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-base: 350ms;
  --duration-slow: 600ms;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-text: 680px;
}

/* ---------- 2. RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-white);
  background: var(--bg-dark);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) ease;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  background: transparent;
}

::selection {
  background: var(--primary);
  color: var(--text-white);
}

/* ---------- 3. TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--fs-hero);
  font-weight: 800;
}
h2 {
  font-size: var(--fs-h2);
}
h3 {
  font-size: var(--fs-h3);
}
h4 {
  font-size: var(--fs-h4);
}

p {
  color: var(--text-muted);
  max-width: var(--max-width-text);
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  color: var(--accent);
}
.text-primary {
  color: var(--primary);
}
.text-white {
  color: var(--text-white);
}
.text-muted {
  color: var(--text-muted);
}
.text-success {
  color: var(--success);
}
.text-center {
  text-align: center;
}
.text-highlight {
  color: var(--text-highlight);
}

.highlight-word {
  color: var(--accent);
  position: relative;
}

.strikethrough {
  text-decoration: line-through;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ---------- 4. LAYOUT UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-section) 0;
  position: relative;
}

.section--alt {
  background: var(--bg-section-alt);
}

.section--card {
  background: var(--bg-card);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-between {
  align-items: center;
  justify-content: space-between;
}

.gap-xs {
  gap: var(--space-xs);
}
.gap-sm {
  gap: var(--space-sm);
}
.gap-md {
  gap: var(--space-md);
}
.gap-lg {
  gap: var(--space-lg);
}
.gap-xl {
  gap: var(--space-xl);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-sm {
  margin-top: var(--space-sm);
}
.mt-md {
  margin-top: var(--space-md);
}
.mt-lg {
  margin-top: var(--space-lg);
}
.mt-xl {
  margin-top: var(--space-xl);
}
.mb-sm {
  margin-bottom: var(--space-sm);
}
.mb-md {
  margin-bottom: var(--space-md);
}
.mb-lg {
  margin-bottom: var(--space-lg);
}

/* ---------- 5. COMPONENTS ---------- */

/* --- Glass Card --- */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-base) ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-primary);
  border-color: rgba(155, 89, 182, 0.2);
}

.glass-card--accent:hover {
  box-shadow: var(--shadow-glow-accent);
  border-color: rgba(233, 30, 144, 0.2);
}

/* --- CTA Button --- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: var(--gradient-cta);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow-cta);
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  width: fit-content;
  min-width: 260px;
  max-width: min(100%, 360px);
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-cta-hover);
  opacity: 0;
  transition: opacity var(--duration-base) ease;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 6px 40px rgba(233, 30, 144, 0.5),
    0 0 80px rgba(233, 30, 144, 0.2);
}

.btn-cta:hover::before {
  opacity: 1;
}

.btn-cta span {
  position: relative;
  z-index: 1;
  white-space: normal;
  line-height: 1.25;
}

.btn-cta .btn-icon {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  transition: transform var(--duration-fast) ease;
}

.btn-cta:hover .btn-icon {
  transform: translateX(4px);
}

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

/* --- Badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--primary-ultralight);
  border: 1px solid rgba(155, 89, 182, 0.2);
  color: var(--primary-light);
  font-family: var(--font-heading);
  font-size: var(--fs-badge);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: var(--radius-full);
}

.badge--accent {
  background: rgba(233, 30, 144, 0.08);
  border-color: rgba(233, 30, 144, 0.2);
  color: var(--accent-glow);
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: var(--max-width-narrow);
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  margin: 0 auto;
}

/* --- Divider --- */
.divider {
  width: 80px;
  height: 3px;
  background: var(--gradient-cta);
  border-radius: var(--radius-full);
  margin: var(--space-md) auto;
}

/* --- Feature Badge (inline icons) --- */
.feature-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 211, 153, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.15);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: var(--fs-small);
  color: var(--success);
  font-weight: 500;
}

.feature-badge i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- Trust badges --- */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
  margin-top: var(--space-md);
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.trust-item i {
  width: 16px;
  height: 16px;
  color: var(--success);
}

/* --- Image Placeholder --- */
.img-placeholder {
  background: linear-gradient(135deg, var(--bg-card) 0%, #1a1030 100%);
  border: 2px dashed rgba(155, 89, 182, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--fs-small);
  text-align: center;
  padding: var(--space-md);
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(155, 89, 182, 0.05) 0%,
    transparent 70%
  );
}

/* ---------- 6. SECTION STYLES ---------- */

/* --- Urgency Bar --- */
.urgency-bar {
  background: var(--gradient-accent-bar);
  background-size: 200% 100%;
  animation: shimmer-bar 3s linear infinite;
  padding: 10px 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(233, 30, 144, 0.3);
}

.urgency-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Hero Logo --- */
.hero-logo {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 2px 8px rgba(155, 89, 182, 0.2));
}

@media (min-width: 768px) {
  .hero-logo {
    max-width: 220px;
  }
}

/* --- Hero --- */
.hero {
  background: var(--gradient-hero);
  padding: clamp(0.75rem, 2vw, 1.25rem) 0 var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(155, 89, 182, 0.08) 0%,
    transparent 70%
  );
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 144, 0.06) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

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

.hero h1 {
  max-width: 800px;
  margin: var(--space-xs) auto var(--space-sm);
  line-height: 1.15;
}

.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

/* VSL Wrapper */
.vsl-wrapper {
  max-width: 400px;
  width: 100%;
  margin: 0 auto var(--space-sm);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 0;
}

.hero-vsl-cta {
  max-width: 360px;
  margin: 0 auto var(--space-md);
}

.vsl-wrapper .vsl-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a1030 0%, #0d0d1a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  cursor: pointer;
  transition: all var(--duration-base) ease;
}

.vsl-wrapper .vsl-placeholder:hover {
  background: linear-gradient(135deg, #221540 0%, #12121f 100%);
}

.play-button {
  width: 72px;
  height: 72px;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-accent);
  transition: transform var(--duration-base) var(--ease-spring);
}

.vsl-placeholder:hover .play-button {
  transform: scale(1.1);
}

.play-button i {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.vsl-label {
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Results Grid --- */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .results-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
}

.result-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-card);
  transition: transform var(--duration-base) var(--ease-out);
}

.result-card:hover {
  transform: scale(1.03);
}

.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-card .result-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
}

/* --- Before/After --- */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .transform-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

.transform-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
}

.transform-card--before {
  background: rgba(255, 77, 106, 0.04);
  border: 1px solid rgba(255, 77, 106, 0.12);
}

.transform-card--after {
  background: rgba(52, 211, 153, 0.04);
  border: 1px solid rgba(52, 211, 153, 0.12);
}

.transform-card .card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 8px;
}

.transform-card--before .card-title {
  color: var(--text-danger);
}

.transform-card--after .card-title {
  color: var(--success);
}

.transform-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: var(--fs-body);
}

.transform-item + .transform-item {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.transform-item i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.transform-card--before .transform-item i {
  color: var(--text-danger);
}

.transform-card--after .transform-item i {
  color: var(--success);
}

.transform-card--before .transform-item span {
  color: var(--text-muted);
}

.transform-card--after .transform-item span {
  color: var(--text-white);
}

/* --- Value Stack --- */
.value-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.value-card .value-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-ultralight);
  border: 1px solid rgba(155, 89, 182, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
}

.value-card .value-icon i {
  width: 22px;
  height: 22px;
}

.value-card h4 {
  margin-bottom: 4px;
  color: var(--text-white);
}

.value-card p {
  font-size: var(--fs-small);
  line-height: 1.5;
}

.value-card .value-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-small);
  color: var(--text-highlight);
  margin-top: 8px;
}

/* Bonus section */
.bonus-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(233, 30, 144, 0.1) 0%,
    rgba(155, 89, 182, 0.1) 100%
  );
  border: 1px solid rgba(233, 30, 144, 0.2);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--fs-badge);
  font-weight: 700;
  color: var(--accent-glow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

/* --- Pricing Section --- */
.pricing-section {
  background: var(--gradient-price);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 144, 0.06) 0%,
    transparent 60%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3rem);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.pricing-card .price-anchor {
  font-size: var(--fs-h4);
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.pricing-card .price-main {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--fs-price-big);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card .price-installment {
  font-size: var(--fs-body);
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.pricing-card .price-installment strong {
  color: var(--text-white);
}

/* --- Guarantee --- */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(52, 211, 153, 0.04);
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  text-align: left;
}

.guarantee-box .guarantee-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: var(--success-bg);
  border: 2px solid rgba(52, 211, 153, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
}

.guarantee-box .guarantee-icon i {
  width: 28px;
  height: 28px;
}

.guarantee-box h4 {
  color: var(--success);
  margin-bottom: 4px;
}

.guarantee-box p {
  font-size: var(--fs-small);
}

/* --- Testimonials (Swiper) --- */
.testimonials-section {
  overflow: hidden;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  height: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  background: #f3f4f6;
}

.testimonial-info h4 {
  font-size: var(--fs-small);
  color: #0a0a14;
  font-weight: 700;
}

.testimonial-info .testimonial-location {
  font-size: 0.75rem;
  color: #6b7280;
}

.testimonial-text {
  font-size: var(--fs-small);
  color: #1f2937;
  line-height: 1.5;
  flex: 1;
  font-style: normal;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 1.8rem;
  line-height: 0;
  vertical-align: -0.3em;
  color: var(--accent);
  margin-right: 4px;
}

/* Swiper overrides */
.swiper {
  padding-bottom: 50px !important;
}

.swiper-pagination-bullet {
  background: var(--text-muted) !important;
  opacity: 0.3 !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent) !important;
  opacity: 1 !important;
}

/* --- Who Is This For --- */
.audience-card {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.audience-card .audience-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-ultralight);
  border: 1px solid rgba(155, 89, 182, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  margin: 0 auto var(--space-sm);
}

.audience-card .audience-icon i {
  width: 24px;
  height: 24px;
}

.audience-card h4 {
  font-size: var(--fs-body);
  margin-bottom: 6px;
}

.audience-card p {
  font-size: var(--fs-small);
  margin: 0 auto;
}

/* --- Steps --- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4rem);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-xs);
  opacity: 0.3;
}

.step-card h4 {
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--fs-body);
}

.step-card p {
  font-size: var(--fs-small);
  margin: 0 auto;
  max-width: 280px;
}

/* Step connector line (desktop) */
@media (min-width: 768px) {
  .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: -15%;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    opacity: 0.2;
  }
}

/* --- Authority --- */
.authority-section .authority-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .authority-section .authority-content {
    grid-template-columns: 280px 1fr;
  }
}

.authority-photo {
  text-align: center;
}

.authority-photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  box-shadow: 0 0 40px rgba(155, 89, 182, 0.15);
  margin: 0 auto;
  background: var(--bg-card);
}

.authority-photo .authority-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h4);
  margin-top: var(--space-sm);
  color: var(--text-white);
}

.authority-photo .authority-title {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.authority-text p {
  margin-bottom: var(--space-sm);
  font-size: var(--fs-body);
  line-height: 1.8;
}

.authority-text p:last-child {
  margin-bottom: 0;
}

/* --- FAQ --- */
.faq-list {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration-base) ease;
}

.faq-item.active {
  border-color: rgba(155, 89, 182, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(1.25rem, 3vw, 1.5rem);
  background: var(--bg-glass);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background var(--duration-fast) ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.06);
}

.faq-question .faq-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-light);
  transition: transform var(--duration-base) var(--ease-out);
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--duration-slow) var(--ease-out),
    padding var(--duration-slow) var(--ease-out);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 clamp(1.25rem, 3vw, 1.5rem) clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.7;
}

/* --- Final CTA --- */
.final-cta {
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(155, 89, 182, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

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

.final-cta .price-main {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 4rem);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: var(--space-md) 0 var(--space-xs);
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin: 0 auto;
}

.footer .footer-support {
  margin-top: var(--space-xs);
  overflow-wrap: anywhere;
}

.footer a {
  color: var(--primary-light);
  transition: color var(--duration-fast) ease;
}

.footer a:hover {
  color: var(--accent);
}

.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xs);
  font-size: var(--fs-small);
}

/* ---------- 7. ANIMATIONS ---------- */

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: var(--shadow-glow-cta);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 6px 50px rgba(233, 30, 144, 0.5),
      0 0 100px rgba(233, 30, 144, 0.2);
    transform: scale(1.03);
  }
}

@keyframes shimmer-bar {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes flicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Decorative floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.orb--purple {
  background: rgba(155, 89, 182, 0.08);
  width: 300px;
  height: 300px;
  animation: float-slow 8s ease-in-out infinite;
}

.orb--pink {
  background: rgba(233, 30, 144, 0.05);
  width: 250px;
  height: 250px;
  animation: float-slow 10s ease-in-out infinite 2s;
}

/* ---------- 8. RESPONSIVE ---------- */

/* === MOBILE SMALL (up to 480px) === */
@media (max-width: 480px) {
  /* Global spacing */
  :root {
    --space-section: 2.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  /* Typography tighter */
  h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  h2 {
    font-size: 1.35rem;
  }
  h3 {
    font-size: 1.15rem;
  }
  h4 {
    font-size: 1rem;
  }

  /* Urgency bar */
  .urgency-bar {
    font-size: 0.7rem;
    padding: 8px 0;
    letter-spacing: 0.02em;
  }

  .urgency-bar i {
    width: 12px;
    height: 12px;
  }

  /* Hero */
  .hero {
    padding: 0.5rem 0 2rem;
  }

  .hero .container {
    gap: 0.5rem;
  }

  .hero-logo {
    margin-bottom: 0;
  }

  .hero h1 {
    font-size: 1.6rem;
    margin: 0 auto var(--space-xs);
  }

  .hero .subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: var(--space-md);
  }

  .badge {
    font-size: 0.65rem;
    padding: 5px 12px;
  }

  /* VSL */
  .vsl-wrapper {
    border-radius: 0;
    margin-bottom: var(--space-md);
  }

  .play-button {
    width: 56px;
    height: 56px;
  }

  .play-button i {
    width: 22px;
    height: 22px;
  }

  .vsl-label {
    font-size: 0.75rem;
  }

  /* Feature badges */
  .feature-badges {
    gap: 6px;
  }

  .feature-badge {
    font-size: 0.7rem;
    padding: 6px 10px;
    gap: 5px;
  }

  .feature-badge i {
    width: 13px;
    height: 13px;
  }

  /* Results grid */
  .results-grid {
    gap: 6px;
  }

  .result-label {
    font-size: 0.7rem;
    padding: 8px;
  }

  /* Section headers */
  .section-header {
    margin-bottom: var(--space-lg);
  }

  .section-header p {
    font-size: 0.85rem;
  }

  .divider {
    width: 50px;
    margin: var(--space-sm) auto;
  }

  /* Transform cards */
  .transform-card {
    padding: 1.25rem;
  }

  .transform-item {
    font-size: 0.85rem;
    padding: 8px 0;
    gap: 10px;
  }

  .transform-item i {
    width: 16px;
    height: 16px;
  }

  /* Glass cards */
  .glass-card {
    padding: 1.25rem;
    border-radius: var(--radius-md);
  }

  /* Value stack */
  .value-card {
    padding: 1.25rem;
    gap: var(--space-sm);
  }

  .value-card .value-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius-sm);
  }

  .value-card .value-icon i {
    width: 18px;
    height: 18px;
  }

  .value-card h4 {
    font-size: 0.95rem;
  }

  .value-card p {
    font-size: 0.8rem;
  }

  .value-card .value-price {
    font-size: 0.75rem;
  }

  .bonus-label {
    font-size: 0.65rem;
    padding: 5px 14px;
  }

  /* Pricing */
  .pricing-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
  }

  .pricing-card .price-anchor {
    font-size: 0.95rem;
  }

  .pricing-card .price-main {
    font-size: 2.75rem;
  }

  .pricing-card .price-installment {
    font-size: 0.85rem;
  }

  /* CTA button */
  .btn-cta {
    padding: 14px 18px;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    border-radius: var(--radius-lg);
    width: fit-content;
    min-width: 0;
    max-width: min(100%, 330px);
  }

  .btn-cta span {
    white-space: normal;
  }

  /* Trust badges */
  .trust-row {
    gap: 8px var(--space-sm);
    font-size: 0.7rem;
  }

  .trust-item i {
    width: 13px;
    height: 13px;
  }

  /* Guarantee */
  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
    gap: var(--space-sm);
  }

  .guarantee-box .guarantee-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .guarantee-box .guarantee-icon i {
    width: 22px;
    height: 22px;
  }

  .guarantee-box h4 {
    font-size: 0.95rem;
  }

  .guarantee-box p {
    font-size: 0.8rem;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1.25rem;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
  }

  .testimonial-info h4 {
    font-size: 0.8rem;
  }

  .testimonial-info .testimonial-location {
    font-size: 0.65rem;
  }

  .testimonial-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .testimonial-text::before {
    font-size: 1.5rem;
  }

  /* Audience cards */
  .grid-4 {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .audience-card {
    padding: 1.25rem;
    display: flex;
    flex-direction: row;
    text-align: left;
    gap: var(--space-sm);
    align-items: center;
  }

  .audience-card .audience-icon {
    margin: 0;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-sm);
  }

  .audience-card .audience-icon i {
    width: 20px;
    height: 20px;
  }

  .audience-card h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }

  .audience-card p {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  /* Steps */
  .steps-grid {
    gap: var(--space-md);
  }

  .step-number {
    font-size: 2.5rem;
  }

  .step-card h4 {
    font-size: 0.9rem;
  }

  .step-card p {
    font-size: 0.8rem;
  }

  /* Authority */
  .authority-photo img,
  .authority-photo .img-placeholder {
    width: 140px !important;
    height: 140px !important;
  }

  .authority-photo .authority-name {
    font-size: 1.1rem;
  }

  .authority-text p {
    font-size: 0.85rem;
    line-height: 1.7;
    text-align: center;
  }

  /* FAQ */
  .faq-question {
    padding: 1rem;
    font-size: 0.85rem;
  }

  .faq-question .faq-icon {
    width: 16px;
    height: 16px;
  }

  .faq-answer-inner {
    padding: 0 1rem 1rem;
    font-size: 0.8rem;
  }

  /* Final CTA */
  .final-cta h2 {
    font-size: 1.35rem;
  }

  .final-cta .price-main {
    font-size: 2.5rem;
  }

  /* Footer */
  .footer {
    padding: var(--space-md) 0;
  }

  .footer p {
    font-size: 0.7rem;
  }

  .footer .footer-links {
    gap: var(--space-sm);
    font-size: 0.7rem;
  }

  /* Orbs smaller on mobile */
  .orb--purple {
    width: 150px;
    height: 150px;
  }

  .orb--pink {
    width: 120px;
    height: 120px;
  }
}

/* === MOBILE MEDIUM (481px to 767px) === */
@media (min-width: 481px) and (max-width: 767px) {
  .hero h1 {
    font-size: 1.85rem;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .audience-card {
    padding: 1.25rem;
  }

  .pricing-card .price-main {
    font-size: 3.5rem;
  }

  .btn-cta {
    width: fit-content;
    max-width: min(100%, 350px);
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }

  .authority-text p {
    text-align: center;
  }
}

/* === TABLET (768px+) === */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .audience-card {
    text-align: center;
    flex-direction: column;
  }

  .audience-card .audience-icon {
    margin: 0 auto var(--space-sm);
  }
}

/* === DESKTOP (1024px+) === */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.25rem;
  }

  .btn-cta {
    max-width: 360px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print */
@media print {
  .urgency-bar,
  .btn-cta,
  .vsl-wrapper {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
}

/* ============================================
   ORDER BUMPS (seleção antes do checkout MP)
   ============================================ */
.bumps-box {
  margin: 20px auto;
  max-width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bumps-title {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.bump-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px dashed rgba(233, 30, 144, 0.45);
  border-radius: 12px;
  background: rgba(233, 30, 144, 0.05);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bump-option:has(.bump-check:checked) {
  border-style: solid;
  border-color: var(--accent-glow, #e91e90);
  background: rgba(233, 30, 144, 0.12);
}

.bump-option--pack {
  border-color: rgba(255, 200, 60, 0.55);
  background: rgba(255, 200, 60, 0.06);
}

.bump-option--pack:has(.bump-check:checked) {
  border-color: #ffc83c;
  background: rgba(255, 200, 60, 0.14);
}

.bump-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  accent-color: #e91e90;
  cursor: pointer;
}

.bump-check:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.bump-option:has(.bump-check:disabled) {
  opacity: 0.55;
  cursor: not-allowed;
}

.bump-text {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.55;
}

.bump-text strong {
  color: var(--text-white);
}

#btn-checkout:disabled {
  opacity: 0.7;
  cursor: wait;
  animation: none;
}

/* Area do Checkout Transparente (Payment Brick) */
.checkout-area {
  width: 100%;
  max-width: 100%;
  margin: 8px auto 0;
  overflow-x: hidden; /* contem qualquer transbordo do iframe do MP */
}

#paymentBrick_container {
  min-height: 40px;
  width: 100%;
}

/* O Brick e um iframe do MP com min-width proprio: forca a caber no card */
#paymentBrick_container iframe,
#paymentBrick_container > div,
.checkout-area iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.pix-result {
  text-align: center;
  padding: 20px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-sizing: border-box;
  overflow: hidden;
}

.pix-title {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.35;
  margin: 0 0 16px;
}

.pix-qr {
  display: block;
  width: 220px;
  max-width: min(100%, 240px);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-sizing: border-box;
}

.pix-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 16px 0 8px;
}

.pix-code {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 96px;
  min-height: 96px;
  border-radius: 10px;
  padding: 12px;
  font-size: 0.75rem;
  font-family: monospace;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  resize: none;
  box-sizing: border-box;
  word-break: break-all;
  overflow-y: auto;
  text-align: left;
}

.pix-copy-btn {
  margin-top: 14px;
  min-width: 0;
  width: 100%;
  max-width: 340px;
}

.pix-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 18px auto 0;
  max-width: 320px;
  width: 100%;
  padding: 0 4px;
  box-sizing: border-box;
}

.checkout-status {
  text-align: center;
  font-size: var(--fs-small);
  margin-top: 12px;
  line-height: 1.5;
  padding: 0 4px;
  box-sizing: border-box;
}

/* Ajustes de densidade em telas estreitas */
@media (max-width: 480px) {
  .bump-option {
    padding: 12px;
    gap: 10px;
  }
  .bump-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

@media (max-width: 360px) {
  .pix-result {
    padding: 18px 10px;
  }
}
