/* ═══════════════════════════════════════════════════════════════
   OPERATTA SOLUÇÕES — Landing Page Styles
   Tema: Dark Mode com gradientes roxo/púrpura
═══════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple-deep:   #1E1B4B;
  --purple-dark:   #2D2469;
  --purple-mid:    #4C1D95;
  --purple-main:   #6D28D9;
  --purple-light:  #7C3AED;
  --purple-bright: #8B5CF6;
  --green-main:    #10B981;
  --green-dark:    #047857;
  --green-bright:  #34D399;
  --red-main:      #EF4444;
  --yellow-main:   #F59E0B;
  --blue-main:     #3B82F6;
  --text-white:    #F8FAFC;
  --text-light:    #CBD5E1;
  --text-muted:    #94A3B8;
  --bg-card:       rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);
  --border-subtle: rgba(255,255,255,0.08);
  --border-purple: rgba(109,40,217,0.4);
  --shadow-purple: 0 0 40px rgba(109,40,217,0.3);
  --shadow-green:  0 0 30px rgba(16,185,129,0.25);
  --radius:        16px;
  --radius-sm:     10px;
  --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background-color: #0D0B1A;
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Urgency Bar ─── */
.urgency-bar {
  background: linear-gradient(90deg, #7C3AED, #4C1D95, #7C3AED);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
  padding: 10px 20px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.urgency-inner .fa-fire { color: #FCD34D; }

.countdown-timer {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 2px 10px;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  color: #FCD34D;
  font-weight: 700;
  min-width: 80px;
  display: inline-block;
  text-align: center;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ─── Navbar ─── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-purple);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-white);
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--purple-bright);
}

.nav-cta {
  background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
  border: 1px solid rgba(139,92,246,0.5);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}

/* ─── Hero Section ─── */
.hero-section {
  background: radial-gradient(ellipse at top, #2D1B69 0%, #1E1B4B 35%, #0D0B1A 70%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 100%;
  background: radial-gradient(circle, rgba(109,40,217,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(109,40,217,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 48px 80px;
}

/* Hero Text */
.hero-text { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(109,40,217,0.2);
  border: 1px solid rgba(109,40,217,0.4);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-bright);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero-badge i { color: #FCD34D; }

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-white);
}

.highlight-purple { color: var(--purple-bright); }
.highlight-green  { color: var(--green-main); }
.highlight-red    { color: var(--red-main); }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Feature Badges */
.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.feature-badge:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-purple);
}

.badge-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* CTA Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
  text-decoration: none;
}

.cta-hero {
  background: linear-gradient(135deg, #059669, #10B981, #34D399);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  color: #fff;
  padding: 18px 32px;
  font-size: 1rem;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 30px rgba(16,185,129,0.4);
  width: 100%;
  text-transform: uppercase;
}

.cta-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(16,185,129,0.5);
}

.cta-secondary {
  background: linear-gradient(135deg, #059669, #10B981);
  color: white;
  padding: 16px 32px;
  font-size: 1rem;
  box-shadow: var(--shadow-green);
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cta-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(16,185,129,0.5);
}

.cta-buy {
  background: linear-gradient(135deg, #059669, #10B981, #34D399);
  background-size: 200%;
  animation: gradientShift 3s ease infinite;
  color: white;
  padding: 18px 36px;
  font-size: 1.05rem;
  box-shadow: 0 8px 30px rgba(16,185,129,0.4);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cta-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 45px rgba(16,185,129,0.5);
}

.cta-main-buy {
  background: linear-gradient(135deg, #065F46, #059669, #10B981, #34D399);
  background-size: 300% 300%;
  animation: gradientShift 2.5s ease infinite;
  color: white;
  padding: 22px 40px;
  font-size: 1.15rem;
  box-shadow: 0 10px 40px rgba(16,185,129,0.5);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 2px solid rgba(52,211,153,0.3);
}

.cta-main-buy:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 60px rgba(16,185,129,0.6);
}

.cta-main-buy i { font-size: 1.2rem; }

/* Hero Trust */
.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-trust i { color: var(--green-main); }

/* ─── Hero Mockup ─── */
.hero-mockup {
  position: relative;
  z-index: 2;
}

.mockup-wrapper {
  position: relative;
  padding: 20px;
}

/* Notebook */
.notebook-mockup {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}

.notebook-screen {
  background: linear-gradient(135deg, #0F0D2A, #1A1540);
  border: 2px solid rgba(109,40,217,0.4);
  border-radius: 12px 12px 0 0;
  padding: 16px;
  min-height: 280px;
  box-shadow: inset 0 0 30px rgba(109,40,217,0.1), 0 0 40px rgba(109,40,217,0.2);
}

.notebook-body {
  height: 18px;
  background: linear-gradient(180deg, #1C1A3A, #141228);
  border-radius: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notebook-camera {
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
}

.notebook-base {
  height: 8px;
  background: linear-gradient(180deg, #2A2550, #1C1A3A);
  border-radius: 0 0 4px 4px;
}

.notebook-stand {
  height: 6px;
  background: #1A1830;
  border-radius: 0 0 8px 8px;
  width: 60%;
  margin: 0 auto;
}

/* Dashboard Preview */
.dashboard-preview { font-size: 0.65rem; }

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: rgba(109,40,217,0.2);
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 0.6rem;
  font-weight: 700;
}

.dash-title { color: var(--purple-bright); letter-spacing: 0.05em; }
.dash-period { color: var(--text-muted); }

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}

.kpi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 8px 6px;
  text-align: center;
}

.kpi-label { display: block; font-size: 0.45rem; color: var(--text-muted); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.04em; }
.kpi-value { display: block; font-size: 0.6rem; font-weight: 700; color: white; margin-bottom: 2px; }
.kpi-trend { display: block; font-size: 0.4rem; }

.kpi-green .kpi-trend { color: var(--green-main); }
.kpi-red .kpi-trend { color: var(--red-main); }
.kpi-blue .kpi-trend { color: var(--blue-main); }

.health-score {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score-num { font-size: 0.9rem; font-weight: 800; color: var(--green-main); }
.score-label { font-size: 0.4rem; color: var(--green-main); }

/* Charts in preview */
.dash-charts { display: grid; grid-template-columns: 1.5fr 1fr; gap: 8px; }

.chart-bar-container, .chart-donut-container {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 8px;
}

.chart-title { display: block; font-size: 0.45rem; font-weight: 600; color: var(--text-light); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }

.bars-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}

.bar-group {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  flex: 1;
  flex-direction: column;
  align-items: center;
}

.bar {
  width: 6px;
  border-radius: 2px 2px 0 0;
  display: inline-block;
}

.bar-green { height: var(--h1); background: linear-gradient(180deg, #34D399, #10B981); min-height: 10px; }
.bar-red   { height: var(--h2); background: linear-gradient(180deg, #F87171, #EF4444); min-height: 8px; }

.bar-group { flex-direction: row; align-items: flex-end; justify-content: center; position: relative; padding-bottom: 12px; }
.bar-label { position: absolute; bottom: 0; font-size: 0.35rem; color: var(--text-muted); }

.donut-chart { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.donut-svg { width: 70px; height: 70px; }

.donut-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  font-size: 0.38rem;
  color: var(--text-muted);
}

/* Mobile Mockup */
.mobile-mockup {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  background: linear-gradient(135deg, #0F0D2A, #1A1540);
  border: 2px solid rgba(109,40,217,0.5);
  border-radius: 20px;
  padding: 12px 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(109,40,217,0.2);
  z-index: 3;
}

.mobile-screen { font-size: 0.55rem; }

.mobile-header {
  text-align: center;
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--purple-bright);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-score { display: flex; justify-content: center; margin-bottom: 8px; }

.mobile-score-ring {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-score-ring svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}

.score-center { text-align: center; }
.score-big { font-size: 1.3rem; font-weight: 800; color: var(--green-main); display: block; }
.score-tag { font-size: 0.38rem; color: var(--green-main); font-weight: 600; }

.mobile-indicators { display: flex; flex-direction: column; gap: 5px; }

.indicator-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  font-size: 0.45rem;
}

.ind-label { display: flex; align-items: center; gap: 3px; color: var(--text-light); }
.ind-label .fas { font-size: 0.3rem; }
.ind-value { font-weight: 700; font-size: 0.5rem; }
.ind-value.green  { color: var(--green-main); }
.ind-value.purple { color: var(--purple-bright); }
.ind-value.blue   { color: var(--blue-main); }
.ind-value.yellow { color: var(--yellow-main); }

/* Glow Effects */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.glow-1 {
  top: 10%; left: 20%;
  width: 200px; height: 200px;
  background: rgba(109,40,217,0.2);
}

.glow-2 {
  bottom: 10%; right: 10%;
  width: 150px; height: 150px;
  background: rgba(16,185,129,0.15);
}

/* ─── Section Headers ─── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(109,40,217,0.15);
  border: 1px solid rgba(109,40,217,0.35);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-bright);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.green-tag {
  background: rgba(16,185,129,0.12);
  border-color: rgba(16,185,129,0.3);
  color: var(--green-main);
}

.purple-tag {
  background: rgba(109,40,217,0.15);
  border-color: rgba(109,40,217,0.4);
  color: var(--purple-bright);
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text-white);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ─── Pain Section ─── */
.pain-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0D0B1A 0%, #110E24 100%);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}

.pain-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(239,68,68,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.pain-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--red-main);
  opacity: 0.8;
}

.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-white);
}

.pain-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pain-conclusion {
  text-align: center;
  padding: 32px;
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: var(--radius);
}

.pain-conclusion p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

.pain-conclusion em {
  color: var(--red-main);
  font-style: normal;
}

.arrow-down {
  margin-top: 20px;
  font-size: 1.5rem;
  color: var(--purple-bright);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ─── Solution Section ─── */
.solution-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #110E24 0%, #0D0B1A 100%);
  position: relative;
  overflow: hidden;
}

.solution-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(109,40,217,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.solution-showcase {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Dashboard Large */
.dashboard-large {
  background: #0F0D2A;
  border: 1px solid rgba(109,40,217,0.4);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(109,40,217,0.15);
}

.dl-header {
  background: rgba(109,40,217,0.15);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(109,40,217,0.2);
}

.dl-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red    { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green  { background: #10B981; }

.dl-title { font-size: 0.75rem; font-weight: 600; color: var(--purple-bright); }

.dl-content { padding: 20px; }

.dl-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.dl-kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 2px solid var(--accent);
}

.dl-kpi i { font-size: 1.2rem; }

.dl-kpi-label { display: block; font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.dl-kpi-val   { display: block; font-size: 0.85rem; font-weight: 700; color: white; }

.score-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.dl-charts {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.dl-chart-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.dl-chart-title { display: block; font-size: 0.65rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }

.dl-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}

.dl-bar-group {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 2px;
  flex: 1;
  position: relative;
  padding-bottom: 18px;
}

.dl-bar-group span {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  color: var(--text-muted);
}

.dlb {
  flex: 1;
  border-radius: 3px 3px 0 0;
  min-height: 6px;
  max-height: 60px;
  transition: height 1s ease;
}

.dlb.green { background: linear-gradient(180deg, #34D399, #10B981); }
.dlb.red   { background: linear-gradient(180deg, #F87171, #EF4444); }

/* Indicators */
.indicator-list { display: flex; flex-direction: column; gap: 10px; }

.ind-item { display: flex; align-items: center; gap: 8px; }
.ind-name { font-size: 0.65rem; color: var(--text-light); width: 120px; flex-shrink: 0; }

.ind-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}

.ind-bar {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}

.ind-pct { font-size: 0.62rem; font-weight: 700; min-width: 55px; text-align: right; }
.ind-pct.green  { color: var(--green-main); }
.ind-pct.purple { color: var(--purple-bright); }
.ind-pct.blue   { color: var(--blue-main); }
.ind-pct.yellow { color: var(--yellow-main); }

/* Solution Features */
.solution-features h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-white);
}

.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.check-list li i {
  color: var(--green-main);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

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

/* ─── Delivery Section ─── */
.delivery-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0D0B1A 0%, #12102A 100%);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.delivery-card {
  background: linear-gradient(135deg, rgba(109,40,217,0.08), rgba(30,27,75,0.6));
  border: 1px solid rgba(109,40,217,0.25);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  overflow: hidden;
}

.delivery-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-mid), var(--purple-light));
}

.delivery-card:hover {
  border-color: rgba(109,40,217,0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--shadow-purple);
}

.delivery-number {
  position: absolute;
  top: -15px;
  left: 32px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(109,40,217,0.4);
}

.delivery-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-top: 12px;
}

.excel-icon { background: linear-gradient(135deg, #217346, #0F5132); color: #34D399; }
.book-icon  { background: linear-gradient(135deg, #7C3AED, #4C1D95); color: #C4B5FD; }
.video-icon { background: linear-gradient(135deg, #EF4444, #B91C1C); color: #FCA5A5; }
.pdf-icon   { background: linear-gradient(135deg, #EF4444, #DC2626); color: #FCA5A5; }

.delivery-content { flex: 1; }

.delivery-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-light));
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.delivery-card:first-child .delivery-badge {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
}

.delivery-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.delivery-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.delivery-items { list-style: none; display: flex; flex-direction: column; gap: 6px; }

.delivery-items li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.delivery-items i { color: var(--green-main); font-size: 0.75rem; }

/* Total Value Box */
.total-value {
  background: linear-gradient(135deg, rgba(30,27,75,0.8), rgba(45,36,105,0.6));
  border: 1px solid rgba(109,40,217,0.4);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-purple);
}

.tv-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tv-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  color: var(--text-light);
}

.tv-price { color: var(--text-muted); text-decoration: line-through; }

.tv-divider {
  border: none;
  border-top: 2px solid rgba(109,40,217,0.3);
  margin: 8px 0;
}

.total-row {
  border-bottom: none;
  margin-top: 4px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-white);
}

.tv-total-price {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.9rem;
}

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

.tv-offer-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(239,68,68,0.2), rgba(239,68,68,0.1));
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #F87171;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.tv-final { margin-bottom: 20px; }
.tv-de { display: block; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 4px; }
.tv-de s { color: var(--red-main); }
.tv-por { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }

.tv-price-final {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-main);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(16,185,129,0.3);
}

.tv-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tv-security span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tv-security i { font-size: 1.2rem; }
.fa-cc-visa      { color: #1A1F71; }
.fa-cc-mastercard{ color: #EB001B; }

/* ─── Benefits Section ─── */
.benefits-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #12102A 0%, #0D0B1A 100%);
}

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

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-purple);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3), var(--shadow-purple);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(109,40,217,0.2), rgba(109,40,217,0.1));
  border: 1px solid rgba(109,40,217,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--purple-bright);
  margin: 0 auto 16px;
}

.benefit-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-white);
}

.benefit-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Target Section ─── */
.target-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0D0B1A 0%, #110E24 100%);
}

.target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.target-yes, .target-profiles {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 36px;
}

.target-yes { border-color: rgba(16,185,129,0.25); }

.target-yes h3, .target-profiles h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.target-yes h3 { color: var(--green-main); }
.target-yes h3 i { color: var(--green-main); }
.target-profiles h3 { color: var(--purple-bright); }
.target-profiles h3 i { color: var(--purple-bright); }

.target-yes ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.target-yes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.target-yes li i { color: var(--green-main); }

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.profile-card {
  background: rgba(109,40,217,0.1);
  border: 1px solid rgba(109,40,217,0.2);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  transition: var(--transition);
}

.profile-card:hover {
  background: rgba(109,40,217,0.18);
  transform: translateY(-3px);
}

.profile-card i {
  font-size: 1.5rem;
  color: var(--purple-bright);
  display: block;
  margin-bottom: 8px;
}

.profile-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
}

/* ─── Testimonials ─── */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #110E24 0%, #0D0B1A 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  color: rgba(109,40,217,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-purple);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.test-stars {
  color: #F59E0B;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.test-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.test-name { display: block; font-weight: 700; font-size: 0.95rem; }
.test-role { display: block; font-size: 0.75rem; color: var(--text-muted); }

/* ─── Guarantee Section ─── */
.guarantee-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0D0B1A 0%, #110E24 100%);
}

.guarantee-box {
  background: linear-gradient(135deg, rgba(16,185,129,0.06), rgba(16,185,129,0.02));
  border: 2px solid rgba(16,185,129,0.25);
  border-radius: 24px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), var(--shadow-green);
}

.guarantee-seal {
  flex-shrink: 0;
}

.seal-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(16,185,129,0.4);
  position: relative;
}

.seal-ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(16,185,129,0.4);
}

.seal-ring i { font-size: 1.5rem; color: rgba(255,255,255,0.6); }
.seal-days { font-size: 3rem; font-weight: 900; color: white; line-height: 1; }
.seal-text { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; color: rgba(255,255,255,0.7); text-transform: uppercase; }

.guarantee-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-white);
}

.guarantee-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.guarantee-badges {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.guarantee-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-main);
}

/* ─── Offer Section ─── */
.offer-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #110E24 0%, #0D0B1A 100%);
}

.urgency-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(239,68,68,0.12), rgba(239,68,68,0.06));
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #F87171;
  margin-bottom: 40px;
  text-align: center;
}

.urgency-box .fa-fire { color: #FCD34D; }

.offer-box {
  background: linear-gradient(135deg, rgba(30,27,75,0.8), rgba(45,36,105,0.5));
  border: 2px solid rgba(109,40,217,0.4);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), var(--shadow-purple);
  max-width: 800px;
  margin: 0 auto;
}

.offer-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(239,68,68,0.2), rgba(239,68,68,0.08));
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #F87171;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.offer-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.offer-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.offer-includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 32px;
  text-align: left;
}

.oi-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
}

.oi-item i { color: var(--green-main); font-size: 1rem; flex-shrink: 0; }

.offer-price {
  margin-bottom: 24px;
}

.price-from {
  font-size: 1.1rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.price-from s { color: var(--red-main); font-weight: 600; }

.price-main { margin-bottom: 4px; }
.price-label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; display: block; }

.price-value {
  font-size: 4rem;
  font-weight: 900;
  color: var(--green-main);
  line-height: 1;
  display: block;
  text-shadow: 0 0 30px rgba(16,185,129,0.4);
}

.price-note { font-size: 0.8rem; color: var(--text-muted); display: block; }

.access-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-main);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.security-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.security-item i { color: var(--green-main); }

.payment-methods {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.payment-methods span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pay-icon {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.pay-icon i { font-size: 1.1rem; }
.fa-cc-visa      { color: #1565C0 !important; }
.fa-cc-mastercard{ color: #E53935 !important; }
.fa-cc-amex      { color: #0D47A1 !important; }

/* ─── FAQ Section ─── */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0D0B1A 0%, #12102A 100%);
}

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { color: var(--purple-bright); }
.faq-question.active { color: var(--purple-bright); }
.faq-question.active .faq-icon { transform: rotate(180deg); color: var(--purple-bright); }

.faq-icon { color: var(--text-muted); transition: var(--transition); flex-shrink: 0; }

.faq-answer {
  display: none;
  padding: 0 28px 22px;
}

.faq-answer.open { display: block; }

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── Final CTA ─── */
.final-cta-section {
  padding: 100px 0;
  background: radial-gradient(ellipse at center, rgba(109,40,217,0.15) 0%, #0D0B1A 70%);
}

.final-cta-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.final-cta-box p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

.final-cta-note {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  font-size: 0.82rem !important;
  color: var(--text-muted) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.final-cta-note i { color: var(--green-main); }

/* ─── Footer ─── */
.footer {
  background: #080715;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-links h4, .footer-contact h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--purple-bright); }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer-contact i { color: var(--purple-bright); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(109,40,217,0.2);
  border-color: var(--border-purple);
  color: var(--purple-bright);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--text-muted); transition: var(--transition); }
.footer-legal a:hover { color: var(--purple-bright); }

.footer-disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(148,163,184,0.5);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
  line-height: 1.6;
}

/* ─── WhatsApp Float ─── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  z-index: 999;
  animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ─── Scroll Animations ─── */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeInRight 0.9s ease 0.3s forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  to { opacity: 1; transform: translateX(0); }
}

/* Stagger children animations */
.pain-grid .pain-card:nth-child(1) { transition-delay: 0.1s; }
.pain-grid .pain-card:nth-child(2) { transition-delay: 0.2s; }
.pain-grid .pain-card:nth-child(3) { transition-delay: 0.3s; }
.pain-grid .pain-card:nth-child(4) { transition-delay: 0.1s; }
.pain-grid .pain-card:nth-child(5) { transition-delay: 0.2s; }
.pain-grid .pain-card:nth-child(6) { transition-delay: 0.3s; }

.delivery-grid .delivery-card:nth-child(1) { transition-delay: 0.1s; }
.delivery-grid .delivery-card:nth-child(2) { transition-delay: 0.2s; }
.delivery-grid .delivery-card:nth-child(3) { transition-delay: 0.3s; }
.delivery-grid .delivery-card:nth-child(4) { transition-delay: 0.4s; }

.benefits-grid .benefit-card:nth-child(1) { transition-delay: 0.05s; }
.benefits-grid .benefit-card:nth-child(2) { transition-delay: 0.10s; }
.benefits-grid .benefit-card:nth-child(3) { transition-delay: 0.15s; }
.benefits-grid .benefit-card:nth-child(4) { transition-delay: 0.20s; }
.benefits-grid .benefit-card:nth-child(5) { transition-delay: 0.25s; }
.benefits-grid .benefit-card:nth-child(6) { transition-delay: 0.30s; }
.benefits-grid .benefit-card:nth-child(7) { transition-delay: 0.35s; }
.benefits-grid .benefit-card:nth-child(8) { transition-delay: 0.40s; }

/* ─── Responsive — Tablet ─── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; padding: 40px 24px 60px; gap: 40px; }
  .hero-mockup  { display: none; }
  .hero-title   { font-size: 2rem; }

  .solution-showcase { grid-template-columns: 1fr; }
  .dl-kpis { grid-template-columns: repeat(2, 1fr); }
  .dl-charts { grid-template-columns: 1fr; }

  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .target-grid { grid-template-columns: 1fr; }
  .tv-content { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }

  .guarantee-box { flex-direction: column; text-align: center; padding: 40px 28px; }
  .guarantee-badges { justify-content: center; }
  .offer-includes { grid-template-columns: 1fr; }
  .navbar { padding: 20px 24px; }
}

/* ─── Responsive — Mobile ─── */
@media (max-width: 640px) {
  .section-title { font-size: 1.5rem; }
  .hero-title    { font-size: 1.6rem; }
  .hero-badges   { grid-template-columns: repeat(2, 1fr); }

  .pain-grid     { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .profiles-grid { grid-template-columns: repeat(3, 1fr); }

  .offer-box { padding: 32px 20px; }
  .price-value { font-size: 3rem; }
  .cta-main-buy { font-size: 0.95rem; padding: 18px 24px; }

  .offer-security { flex-direction: column; gap: 12px; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .footer-legal   { justify-content: center; }

  .guarantee-box { padding: 32px 20px; }
  .seal-ring { width: 110px; height: 110px; }
  .seal-days { font-size: 2.5rem; }

  .total-value { padding: 28px 20px; }
  .tv-content { grid-template-columns: 1fr; gap: 28px; }
  .tv-price-final { font-size: 2.5rem; }

  .urgency-bar { font-size: 0.75rem; }
  .urgency-inner { flex-direction: column; gap: 6px; }
}
