/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Colors */
  --primary-darkest: #0a1120;
  --primary-dark: #0f1e36;
  --primary: #1d4ed8;
  --primary-mid: #2563eb;
  --royal-blue: #1d4ed8;
  --blue-light: #3b82f6;
  --blue-lighter: #60a5fa;
  --accent-green: #059669;
  --accent-green-dark: #047857;
  --gold: #d97706;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-section: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #1e293b;
  --text-muted: #475569;
  --text-light: #64748b;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --red-strike: #ef4444;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 6px 16px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.08), 0 12px 28px rgba(0,0,0,0.06);

  /* Radii */
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.6;

  /* Layout */
  --max-w: 1100px;
  --max-w-narrow: 820px;
  --gutter: 20px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.25s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 60px;
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--bg);
  line-height: var(--leading-normal);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ============================================
   UTILITY
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

.section {
  padding: 72px 0;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--royal-blue);
  background: rgba(29, 78, 216, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: var(--leading-tight);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: var(--leading-normal);
  max-width: 640px;
}

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

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

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

/* ============================================
   URGENCY BAR
   ============================================ */
.urgency-bar {
  background: #0752b8;
  color: var(--white);
  padding: 10px var(--gutter);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 2px 10px rgba(7, 59, 143, 0.18);
}

.urgency-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 700;
}

.urgency-bar__pulse {
  width: 8px;
  height: 8px;
  background: #93c5fd;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.urgency-bar__label {
  opacity: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.urgency-bar__timer {
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.14);
  padding: 2px 10px;
  border-radius: 6px;
}

.urgency-bar__secure {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  opacity: 0.6;
  margin-left: 16px;
}

@media (max-width: 600px) {
  .urgency-bar__secure {
    display: none;
  }

  .urgency-bar {
    padding: 9px 10px;
  }

  .urgency-bar__inner {
    flex-wrap: nowrap;
    gap: 6px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .urgency-bar__pulse {
    display: none;
  }

  .urgency-bar__timer {
    flex-shrink: 0;
    font-size: 0.82rem;
    padding: 2px 7px;
  }
}

/* ============================================
   HERO
   ============================================ */
/* ============================================
   HERO (HEAD AZUL)
   ============================================ */
.hero {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f9 58%, #e8eef6 100%);
  color: var(--text-primary);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29,78,216,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.2;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #0752b8;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37,99,235,0.34);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s var(--ease) both;
}

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

.hero__title {
  font-size: clamp(1.85rem, 5vw, 3.1rem);
  font-weight: 900;
  line-height: var(--leading-tight);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: #0f172a;
  animation: fadeInDown 0.8s var(--ease) 0.1s both;
}

.hero__title-highlight {
  color: #0752b8;
}

.hero__title-line {
  display: block;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  line-height: var(--leading-normal);
  color: #1f2937;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 500;
  animation: fadeInDown 0.8s var(--ease) 0.2s both;
}

.hero__mockup {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto 40px;
  border: 0;
  border-radius: var(--radius-lg);
  background: #ffffff;
  animation: fadeInDown 0.8s var(--ease) 0.3s both;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 18px 42px rgba(15, 35, 70, 0.11);
}

.hero__mockup:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(15, 35, 70, 0.14);
}

.hero__mockup > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

.hero__mockup-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #7890ac;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 36px;
  animation: fadeInDown 0.8s var(--ease) 0.4s both;
}

.hero__benefit {
  font-size: 0.92rem;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.check-icon {
  color: #0b5ed7;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero__delivery {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 560px;
  margin: 18px auto 0;
}

.hero__delivery-channels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.hero__delivery-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 58px;
}

.hero__delivery-channel img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.hero__delivery-channel span {
  color: #1f2937;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero__delivery-plus {
  color: #334155;
  font-size: 1.3rem;
  font-weight: 500;
  transform: translateY(-10px);
}

.hero__note {
  font-size: 0.84rem;
  color: #475569;
  margin: 0;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 480px) {
  .hero__delivery {
    gap: 8px;
    padding: 0 8px;
  }

  .hero__delivery-channel img {
    width: 36px;
    height: 36px;
  }

  .hero__note {
    font-size: 0.78rem;
  }
}

/* ============================================
   STATS BAR (TEMA BRANCO)
   ============================================ */
.stats-bar {
  background: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.stat-item {
  color: var(--text-primary);
}

.stat-item__number {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--royal-blue);
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline;
  font-variant-numeric: tabular-nums;
}

.stat-item__plus {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--royal-blue);
  line-height: 1;
}

.stat-item__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  text-align: center;
  line-height: 1.2;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(5,150,105,0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5,150,105,0.45);
}

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

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(5,150,105,0.35); }
  50% { box-shadow: 0 4px 24px rgba(5,150,105,0.55), 0 0 0 6px rgba(5,150,105,0.15); }
}

.btn--secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}

.btn--secondary:hover {
  border-color: var(--royal-blue);
  color: var(--royal-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--blue {
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--primary-mid) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(29,78,216,0.35);
}

.btn--blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29,78,216,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--royal-blue);
  border: 2px solid var(--royal-blue);
  font-weight: 800;
}

.btn--outline:hover {
  background: var(--royal-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--hero {
  font-size: 1.05rem;
  padding: 18px 40px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 900;
}

.btn--full {
  width: 100%;
}

/* ============================================
   BENEFITS (Como Funciona)
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--duration) var(--ease);
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.benefit-card__icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29,78,216,0.08);
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--royal-blue);
  transition: all var(--duration) var(--ease);
}

.benefit-card:hover .benefit-card__icon-wrap {
  background: rgba(29,78,216,0.14);
  transform: scale(1.05);
}

.benefit-card__icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}

.benefit-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: var(--leading-snug);
}

.benefit-card__text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

/* Guide Previews Row */
.guide-previews {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  overflow-x: auto;
  padding: 4px 0 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  cursor: grab;
}

.guide-previews::-webkit-scrollbar {
  display: none;
}

.guide-previews:active {
  cursor: grabbing;
}

.guide-preview-slot {
  flex: 0 0 175px;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  transition: all var(--duration) var(--ease);
  overflow: hidden;
}

.guide-preview-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.guide-preview-slot__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
}

.guide-preview-slot:hover {
  border-color: var(--royal-blue);
  background: rgba(29,78,216,0.04);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.guide-preview-slot:hover .guide-preview-slot__inner {
  color: var(--royal-blue);
}

@media (max-width: 480px) {
  .guide-previews {
    margin-top: 38px;
  }

  .guide-preview-slot {
    flex-basis: calc(50% - 6px);
  }
}

/* ============================================
   CONTENT CARDS
   ============================================ */
.content-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 132px;
  padding: 18px 14px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal-blue), var(--accent-green));
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.content-card:hover::before {
  opacity: 1;
}

.content-card__number {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--royal-blue);
  background: rgba(29,78,216,0.1);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.content-card__title {
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0;
  line-height: var(--leading-snug);
}

@media (max-width: 480px) {
  .content-card {
    min-height: 124px;
    padding: 16px 12px;
  }

  .content-card__number {
    width: 31px;
    height: 31px;
    margin-bottom: 10px;
  }

  .content-card__title {
    font-size: 0.84rem;
  }
}

.content-card__text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

/* ============================================
   IDENTIFICATION
   ============================================ */
.identification {
  background: #f4f6f8;
}

.id-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.id-list__item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 0.93rem;
  font-weight: 500;
  color: #52647b;
  line-height: var(--leading-normal);
  padding: 16px 18px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #d8dee7;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.07);
  transition: all var(--duration) var(--ease);
}

.id-list__item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.09);
  transform: translateY(-1px);
}

.id-list__check {
  color: var(--royal-blue);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
}

.id-list__check svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

@media (max-width: 480px) {
  .id-list {
    gap: 11px;
  }

  .id-list__item {
    gap: 11px;
    padding: 14px 15px;
    font-size: 0.86rem;
    line-height: 1.5;
  }
}

.id-highlight {
  text-align: center;
  margin-top: 36px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ============================================
   CAROUSEL (Preview)
   ============================================ */
.carousel-wrapper {
  position: relative;
}

.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: none;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 20px;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel__item {
  flex: 0 0 200px;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  background: var(--white);
  scroll-snap-align: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.carousel__item:hover {
  border-color: var(--royal-blue);
  color: var(--royal-blue);
  background: rgba(37,99,235,0.02);
  transform: scale(1.03);
  box-shadow: var(--shadow-card);
}

.carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
}

.carousel__item .carousel__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-hint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 8px;
  opacity: 0.7;
}

@media (max-width: 480px) {
  .carousel__item {
    flex: 0 0 75vw;
  }
}

/* ============================================
   BONUSES
   ============================================ */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .bonuses-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.bonus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent-green));
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.bonus-card:hover::before {
  opacity: 1;
}

.bonus-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(217,119,6,0.1);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.bonus-card__image {
  width: min(74%, 220px);
  aspect-ratio: 760 / 1074;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  margin: 0 auto 16px;
}

.bonus-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bonus-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.bonus-card__title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: var(--leading-snug);
}

.bonus-card__text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: var(--leading-normal);
  margin-bottom: 16px;
}

.bonus-card__price-old {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: line-through;
  text-decoration-color: var(--red-strike);
  margin-bottom: 4px;
}

.bonus-card__price-new {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent-green);
  letter-spacing: -0.02em;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-xs);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.testimonial-card__profile {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--royal-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.testimonial-card__quote {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.7;
}

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

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(29,78,216,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-blue);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-primary);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.testimonial-card__slot {
  width: 100%;
  min-height: 140px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  background: var(--bg-alt);
}

/* Legacy testimonials carousel (kept for backward compat) */
.testimonials-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 20px;
  scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-slot {
  width: 100%;
  height: 100%;
  min-height: 160px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  background: var(--bg-alt);
}

@media (max-width: 480px) {
  .testimonial-card {
    flex: 0 0 85vw;
  }
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--duration) var(--ease);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card--featured {
  border: 2px solid var(--royal-blue);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(29,78,216,0.15);
  background: linear-gradient(180deg, rgba(29,78,216,0.03) 0%, var(--white) 100%);
}

.pricing-card--featured:hover {
  border-color: var(--royal-blue);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(29,78,216,0.15);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--royal-blue), #1e3a8a);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 2px 8px rgba(29,78,216,0.3); }
  50% { box-shadow: 0 2px 16px rgba(29,78,216,0.5); }
}

.pricing-card__name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pricing-card__desc {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-card__price {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.pricing-card--featured .pricing-card__price {
  color: var(--royal-blue);
}

.pricing-card__price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card__feature {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: var(--leading-snug);
}

.pricing-card__feature .check {
  color: var(--accent-green);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-trust {
  text-align: center;
  margin-top: 28px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.pricing-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee {
  background: linear-gradient(135deg, rgba(29,78,216,0.05) 0%, rgba(5,150,105,0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.guarantee__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.guarantee__seal {
  width: clamp(136px, 34vw, 180px);
  height: auto;
  margin: 0 auto 20px;
  transition: all var(--duration) var(--ease);
}

.guarantee__seal img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(15, 23, 42, 0.2));
}

.guarantee__seal:hover {
  transform: scale(1.05);
}

.guarantee__title {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.guarantee__text {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.faq-item:hover {
  border-color: var(--blue-lighter);
}

.faq-item.active {
  border-color: var(--royal-blue);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  background: transparent;
  transition: color var(--duration) var(--ease);
}

.faq-question:hover {
  color: var(--royal-blue);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-light);
  transition: transform var(--duration) var(--ease);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-answer__inner {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,0.7);
  padding: 44px 0;
  text-align: center;
}

.footer__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}

.footer__desc {
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.footer__copy {
  font-size: 0.75rem;
  margin-bottom: 12px;
  opacity: 0.7;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--duration) var(--ease);
}

.footer__link:hover {
  color: var(--white);
}

/* ============================================
   POPUP / MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s var(--ease);
  position: relative;
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  background: var(--bg-alt);
  transition: all var(--duration) var(--ease);
}

.modal__close:hover {
  background: var(--border);
  color: var(--text-primary);
}

.modal__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: var(--leading-tight);
}

.modal__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: var(--leading-normal);
}

.modal__features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.modal__feature {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal__feature .check {
  color: var(--accent-green);
  font-weight: 700;
}

.modal__feature .gift {
  font-size: 1rem;
}

.modal__plus {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--royal-blue);
  margin: 8px 0;
  text-align: center;
}

.modal__price-old {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
  text-decoration-color: var(--red-strike);
  margin-bottom: 4px;
}

.modal__price-new {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-green);
  margin-bottom: 6px;
}

.modal__price-note {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.modal__skip {
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--duration) var(--ease);
}

.modal__skip:hover {
  color: var(--text-muted);
}

/* Popup visual - versão compacta e responsiva */
.modal-overlay {
  padding: 18px;
  background: rgba(2, 12, 32, 0.78);
  backdrop-filter: blur(8px);
}

.modal {
  width: min(100%, 560px);
  max-width: 560px;
  max-height: calc(100dvh - 28px);
  padding: 26px 28px 22px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 28px;
  background: radial-gradient(circle at 50% 0, rgba(37, 99, 235, 0.09), transparent 29%), #f4f6f8;
  box-shadow: 0 32px 90px rgba(0, 16, 48, 0.45), 0 0 0 6px rgba(255,255,255,0.08);
  scrollbar-width: thin;
  scrollbar-color: rgba(37,99,235,.35) transparent;
}

.modal__close {
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  color: #50617a;
  background: rgba(255,255,255,.92);
  border: 1px solid #dbe5f2;
  box-shadow: 0 5px 14px rgba(15, 38, 71, 0.1);
}

.modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto 10px;
  padding: 6px 12px;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-full);
  color: #1d4ed8;
  background: #eff6ff;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.modal__title {
  max-width: 480px;
  margin: 0 auto 9px;
  color: var(--text-primary);
  font-size: clamp(1.38rem, 4vw, 1.75rem);
  font-weight: 900;
  line-height: var(--leading-tight);
  letter-spacing: -.035em;
}

.modal__title span { color: var(--royal-blue); }
.modal__title strong { color: var(--accent-green); white-space: nowrap; }
.modal__text { max-width: 450px; margin: 0 auto 16px; font-size: .82rem; }

.modal__features {
  display: block;
  margin-bottom: 14px;
  padding: 10px;
  border: 1px solid #dce9f7;
  border-radius: 18px;
  background: linear-gradient(145deg, #f5f9ff, #eef5fc);
}

.modal__base {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(22, 54, 92, .06);
}

.modal__base-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent-green);
  font-weight: 900;
  box-shadow: 0 5px 12px rgba(16,185,129,.25);
}

.modal__base div { display: flex; flex-direction: column; }
.modal__base small, .modal__feature small { color: #64748b; font-size: .58rem; font-weight: 900; letter-spacing: .07em; }
.modal__base strong { color: #13213a; font-size: .84rem; }
.modal__bonus-list { display: grid; gap: 6px; }

.modal__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 7px 0;
  color: #334155;
  font-size: .68rem;
  font-weight: 800;
}

.modal__plus span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--royal-blue);
  font-size: 1rem;
}

.modal__feature {
  display: grid;
  grid-template-columns: 38px minmax(0,1fr) auto;
  align-items: center;
  min-width: 0;
  padding: 6px;
  border: 1px solid #e0e9f4;
  border-radius: 11px;
  gap: 9px;
  background: rgba(255,255,255,.88);
}

.modal__feature img {
  display: block;
  width: 38px;
  height: 54px;
  border: 1px solid #d7e1ee;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 4px 9px rgba(21,53,88,.1);
}

.modal__feature div { min-width: 0; }
.modal__feature strong { display: block; color: #1e293b; font-size: .75rem; line-height: 1.25; }
.modal__included { padding: 4px 6px; border-radius: 999px; color: #047857; background: #d1fae5; font-size: .54rem; font-weight: 900; }

.modal__offer { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 2px 0 4px; }
.modal__offer > div:first-child { display: flex; flex-direction: column; align-items: flex-end; }
.modal__offer > div:first-child small { color: #64748b; font-size: .56rem; font-weight: 800; letter-spacing: .07em; }
.modal__price-old { margin: 0; font-size: .78rem; }
.modal__price-new { margin: 0; color: var(--accent-green); font-size: 1.85rem; font-weight: 900; letter-spacing: -.04em; }
.modal__price-new small { color: #64748b; font-size: .58rem; font-weight: 900; letter-spacing: .05em; }
.modal__price-note { margin: 0 0 11px; color: var(--text-secondary); font-size: .72rem; font-weight: 700; }
.modal__price-note span { color: var(--accent-green); }

.modal__cta { display: flex; min-height: 55px; box-shadow: 0 10px 24px rgba(16,185,129,.28); font-size: .9rem; }
.modal__trust { display: flex; justify-content: center; gap: 16px; margin-top: 9px; color: #64748b; font-size: .62rem; font-weight: 700; }
.modal__skip {
  display: flex;
  width: 100%;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  margin-top: 9px;
  padding: 9px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 11px;
  color: #475569;
  background: #fff;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .05);
}

.modal__skip:hover { color: #1e3a5f; border-color: #94a3b8; background: #f8fafc; }

@media (max-width: 600px) {
  .modal-overlay { align-items: center; padding: 8px; }
  .modal { width: 100%; max-width: none; max-height: calc(100dvh - 8px); padding: 20px 14px calc(14px + env(safe-area-inset-bottom)); border-radius: 24px 24px 18px 18px; }
  .modal__close { top: 9px; right: 9px; width: 34px; height: 34px; }
  .modal__badge { margin-bottom: 8px; padding: 5px 10px; font-size: .6rem; }
  .modal__title { max-width: calc(100% - 28px); font-size: clamp(1.2rem, 5.4vw, 1.48rem); }
  .modal__text { max-width: 330px; margin-bottom: 12px; font-size: .72rem; }
  .modal__features { margin-bottom: 10px; padding: 8px; border-radius: 15px; }
  .modal__base { padding: 7px 9px; }
  .modal__base-icon { width: 26px; height: 26px; flex-basis: 26px; font-size: .8rem; }
  .modal__base strong { font-size: .76rem; }
  .modal__plus { margin: 5px 0; }
  .modal__feature { grid-template-columns: 32px minmax(0,1fr) auto; padding: 5px; gap: 7px; }
  .modal__feature img { width: 32px; height: 45px; }
  .modal__feature strong { font-size: .67rem; }
  .modal__included { padding: 3px 5px; font-size: .48rem; }
  .modal__offer { gap: 11px; margin-top: 0; }
  .modal__price-new { font-size: 1.6rem; }
  .modal__price-note { margin-bottom: 9px; font-size: .64rem; }
  .modal__cta { min-height: 50px; padding: 9px 12px; font-size: .78rem; }
  .modal__trust { margin-top: 7px; gap: 11px; font-size: .56rem; }
  .modal__skip { min-height: 39px; margin-top: 7px; padding: 8px 10px; font-size: .61rem; }
}

@media (max-height: 700px) and (max-width: 600px) {
  .modal__badge { display: none; }
  .modal { padding-top: 16px; }
  .modal__text { margin-bottom: 8px; }
  .modal__feature { grid-template-columns: 28px minmax(0,1fr) auto; }
  .modal__feature img { width: 28px; height: 39px; }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  cursor: zoom-out;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0,0,0,0.4);
  transform: scale(0.9);
  transition: transform 0.3s var(--ease);
}

.lightbox-overlay.active img {
  transform: scale(1);
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 90;
  opacity: 0;
  transition: all 0.4s var(--ease);
  pointer-events: none;
}

.floating-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.btn--floating {
  padding: 14px 28px;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(16,185,129,0.4), 0 0 0 1px rgba(16,185,129,0.1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.btn--floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(16,185,129,0.5), 0 0 0 1px rgba(16,185,129,0.2);
}

@media (max-width: 480px) {
  .floating-cta {
    bottom: 16px;
    left: 16px;
    right: 16px;
    transform: translateX(0) translateY(100px);
  }

  .floating-cta.visible {
    transform: translateX(0) translateY(0);
  }

  .btn--floating {
    width: 100%;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for grid children */
.benefits-grid.visible .benefit-card,
.content-grid.visible .content-card,
.bonuses-grid.visible .bonus-card,
.testimonials-grid.visible .testimonial-card {
  animation: fadeUpStagger 0.5s var(--ease) both;
}

.benefits-grid.visible .benefit-card:nth-child(1),
.content-grid.visible .content-card:nth-child(1),
.bonuses-grid.visible .bonus-card:nth-child(1),
.testimonials-grid.visible .testimonial-card:nth-child(1) { animation-delay: 0s; }

.benefits-grid.visible .benefit-card:nth-child(2),
.content-grid.visible .content-card:nth-child(2),
.bonuses-grid.visible .bonus-card:nth-child(2),
.testimonials-grid.visible .testimonial-card:nth-child(2) { animation-delay: 0.08s; }

.benefits-grid.visible .benefit-card:nth-child(3),
.content-grid.visible .content-card:nth-child(3),
.bonuses-grid.visible .bonus-card:nth-child(3),
.testimonials-grid.visible .testimonial-card:nth-child(3) { animation-delay: 0.16s; }

.benefits-grid.visible .benefit-card:nth-child(4),
.content-grid.visible .content-card:nth-child(4) { animation-delay: 0.24s; }

.benefits-grid.visible .benefit-card:nth-child(5),
.content-grid.visible .content-card:nth-child(5) { animation-delay: 0.32s; }

.benefits-grid.visible .benefit-card:nth-child(6),
.content-grid.visible .content-card:nth-child(6) { animation-delay: 0.4s; }

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

/* ID list stagger */
.id-list.visible .id-list__item {
  animation: fadeUpStagger 0.4s var(--ease) both;
}

.id-list.visible .id-list__item:nth-child(1) { animation-delay: 0s; }
.id-list.visible .id-list__item:nth-child(2) { animation-delay: 0.05s; }
.id-list.visible .id-list__item:nth-child(3) { animation-delay: 0.1s; }
.id-list.visible .id-list__item:nth-child(4) { animation-delay: 0.15s; }
.id-list.visible .id-list__item:nth-child(5) { animation-delay: 0.2s; }
.id-list.visible .id-list__item:nth-child(6) { animation-delay: 0.25s; }
.id-list.visible .id-list__item:nth-child(7) { animation-delay: 0.3s; }
.id-list.visible .id-list__item:nth-child(8) { animation-delay: 0.35s; }
.id-list.visible .id-list__item:nth-child(9) { animation-delay: 0.4s; }

/* ============================================
   RESPONSIVE GLOBAL
   ============================================ */
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 48px 0 56px;
  }

  .hero__mockup {
    height: auto;
  }
}

@media (max-width: 480px) {
  :root {
    --gutter: 16px;
  }

  .section {
    padding: 44px 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .hero {
    padding: 34px 0 44px;
  }

  .hero__badge {
    margin-bottom: 20px;
  }

  .hero__title {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.78rem;
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .hero__subtitle {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 34px;
  }

  .hero__mockup {
    height: auto;
  }

  .btn--hero {
    font-size: 0.88rem;
    padding: 15px 28px;
  }
}
