/* DM3 Theme — main.css — v1.0.0 */

/* ===== RESET & VARS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0F2744;
  --blue:      #1A4B8C;
  --mid:       #2563EB;
  --sky:       #3B82F6;
  --accent:    #38BDF8;
  --light-bg:  #F0F6FF;
  --white:     #FFFFFF;
  --gray-50:   #F8FAFC;
  --gray-100:  #F1F5F9;
  --gray-200:  #E2E8F0;
  --gray-400:  #94A3B8;
  --gray-600:  #475569;
  --gray-800:  #1E293B;
  --text:      #0F2744;
  --muted:     #64748B;
  --success:   #10B981;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(15,39,68,.08), 0 1px 2px rgba(15,39,68,.05);
  --shadow-md: 0 4px 24px rgba(15,39,68,.10), 0 2px 8px rgba(15,39,68,.06);
  --shadow-lg: 0 12px 48px rgba(15,39,68,.14), 0 4px 16px rgba(15,39,68,.08);
  --shadow-glow: 0 0 0 1px rgba(56,189,248,.3), 0 8px 32px rgba(37,99,235,.2);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ===== UTILITIES ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.nav-logo-icon svg { width: 22px; height: 22px; }
.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 14.5px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--navy); background: var(--gray-100); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-ghost {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 14.5px; font-weight: 500;
  color: var(--gray-600);
  padding: 8px 16px; border-radius: var(--r-sm);
  text-decoration: none;
  transition: color .2s, background .2s;
}
.btn-ghost:hover { color: var(--navy); background: var(--gray-100); }
.btn-primary {
  background: var(--mid);
  color: #fff;
  border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 14.5px; font-weight: 600;
  padding: 9px 22px; border-radius: var(--r-sm);
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,.35); }
.btn-primary:active { transform: translateY(0); }

/* ===== HERO ===== */
.hero {
  padding-top: 68px;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 55%, #1d60b5 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,.5) 30%, rgba(0,0,0,.5) 70%, transparent);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,.25) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,.2) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 80px 0 100px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(56,189,248,.15);
  border: 1px solid rgba(56,189,248,.3);
  color: var(--accent);
  font-size: 12.5px; font-weight: 600;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--accent), #60A5FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 300;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn-hero {
  background: var(--accent);
  color: var(--navy);
  font-family: var(--font-body); font-size: 16px; font-weight: 700;
  padding: 14px 30px; border-radius: var(--r-md);
  border: none; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(56,189,248,.4);
}
.btn-hero:hover { background: #7DD3FC; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(56,189,248,.5); }
.btn-hero-outline {
  background: rgba(255,255,255,.1);
  color: #fff;
  font-family: var(--font-body); font-size: 16px; font-weight: 500;
  padding: 13px 28px; border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.25); cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(8px);
}
.btn-hero-outline:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.45); }
.hero-stats {
  display: flex; gap: 32px; margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num {
  font-family: var(--font-head); font-size: 28px; font-weight: 800;
  color: #fff; letter-spacing: -1px;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 2px; font-weight: 400; }

/* Dashboard mockup */
.hero-visual {
  position: relative;
}
.dashboard-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-title { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); }
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots .d1 { background: #FF5F57; }
.dash-dots .d2 { background: #FEBC2E; }
.dash-dots .d3 { background: #28C840; }

.dash-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.dash-metric {
  background: rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 14px;
}
.dash-metric-val { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: #fff; }
.dash-metric-lbl { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 2px; }
.dash-metric-up { font-size: 11px; color: #4ADE80; margin-top: 4px; }

.dash-chart { margin-bottom: 18px; }
.dash-chart-title { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.chart-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: rgba(56,189,248,.35);
  transition: background .2s;
  cursor: pointer;
}
.chart-bar:hover { background: rgba(56,189,248,.7); }
.chart-bar.active { background: var(--accent); }

.dash-list { display: flex; flex-direction: column; gap: 8px; }
.dash-list-item {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-sm);
  padding: 10px 14px;
}
.dash-item-name { font-size: 12px; color: rgba(255,255,255,.8); }
.dash-item-badge {
  font-size: 10px; font-weight: 600; padding: 2px 10px;
  border-radius: 100px;
}
.badge-green { background: rgba(74,222,128,.2); color: #4ADE80; }
.badge-blue  { background: rgba(56,189,248,.2); color: var(--accent); }
.badge-amber { background: rgba(251,191,36,.2); color: #FBD450; }

/* floating mini cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  font-weight: 600;
}
.float-card-1 {
  top: 20px; left: -60px;
  animation: float 3.5s 1s ease-in-out infinite;
}
.float-card-2 {
  bottom: 30px; right: -40px;
  animation: float 3.5s .5s ease-in-out infinite;
}
.float-icon { font-size: 18px; margin-bottom: 4px; }
.float-val { font-family: var(--font-head); font-size: 16px; color: var(--navy); }
.float-sub { font-size: 10px; color: var(--muted); font-weight: 400; }

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--light-bg);
  color: var(--mid);
  font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: 1px solid rgba(37,99,235,.15);
}
.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px; color: var(--muted); line-height: 1.7;
  font-weight: 300; max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ===== FEATURES / BENEFICIOS ===== */
.features { padding: 100px 0; background: var(--white); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px;
}
.feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--mid), var(--accent));
  opacity: 0; transition: opacity .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,.2); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--light-bg);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.feature-title {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px; letter-spacing: -.3px;
}
.feature-desc { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ===== COMO FUNCIONA ===== */
.how { padding: 100px 0; background: var(--gray-50); }
.how-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 60px; position: relative;
}
.how-steps::before {
  content: '';
  position: absolute; top: 36px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--mid), var(--accent));
  z-index: 0;
}
.how-step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-bubble {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  color: var(--mid);
  box-shadow: 0 0 0 6px var(--gray-50), var(--shadow-sm);
  transition: background .3s, color .3s;
}
.how-step:hover .step-bubble { background: var(--mid); color: #fff; }
.step-icon { font-size: 28px; margin-bottom: 6px; }
.step-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ===== PRICING ===== */
.pricing { padding: 100px 0; background: var(--white); }
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 32px 0 52px;
}
.toggle-label { font-size: 14px; font-weight: 500; color: var(--muted); }
.toggle-wrap {
  position: relative; width: 52px; height: 28px;
  background: var(--mid); border-radius: 100px; cursor: pointer;
  transition: background .25s;
}
.toggle-wrap input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-knob {
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: #fff; border-radius: 50%;
  transition: transform .25s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.toggle-wrap input:checked ~ .toggle-knob { transform: translateX(24px); }
.savings-badge {
  background: #ECFDF5; color: #059669;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  border: 1px solid #A7F3D0;
}

.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}
.plan-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.plan-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.04);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}
.plan-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.plan-popular {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--accent), #60A5FA);
  color: var(--navy); font-size: 11px; font-weight: 800;
  padding: 4px 12px; border-radius: 100px;
  letter-spacing: .4px; text-transform: uppercase;
}
.plan-name {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--mid); margin-bottom: 8px;
}
.plan-card.featured .plan-name { color: var(--accent); }
.plan-tagline { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.plan-card.featured .plan-tagline { color: rgba(255,255,255,.6); }

.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px; }
.price-currency { font-size: 18px; font-weight: 600; color: var(--navy); margin-top: 8px; }
.price-val { font-family: var(--font-head); font-size: 52px; font-weight: 800; color: var(--navy); letter-spacing: -2px; line-height: 1; }
.price-period { font-size: 14px; color: var(--muted); align-self: flex-end; padding-bottom: 4px; }
.plan-card.featured .price-currency,
.plan-card.featured .price-val { color: #fff; }
.plan-card.featured .price-period { color: rgba(255,255,255,.5); }

.plan-divider { height: 1px; background: var(--gray-200); margin-bottom: 24px; }
.plan-card.featured .plan-divider { background: rgba(255,255,255,.12); }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--gray-800);
}
.plan-card.featured .plan-features li { color: rgba(255,255,255,.85); }
.plan-check {
  width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--mid);
}
.plan-card.featured .plan-check { background: rgba(56,189,248,.2); color: var(--accent); }
.plan-check-x { background: var(--gray-100); color: var(--gray-400); }

.btn-plan {
  display: block; width: 100%;
  background: var(--light-bg);
  color: var(--mid);
  border: 1.5px solid rgba(37,99,235,.2);
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  padding: 14px; border-radius: var(--r-md);
  cursor: pointer; text-decoration: none; text-align: center;
  transition: all .2s;
}
.btn-plan:hover { background: var(--mid); color: #fff; border-color: var(--mid); transform: translateY(-1px); }
.btn-plan-featured {
  background: var(--accent);
  color: var(--navy);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(56,189,248,.4);
}
.btn-plan-featured:hover { background: #7DD3FC; color: var(--navy); box-shadow: 0 8px 32px rgba(56,189,248,.5); }

.pricing-note { text-align: center; margin-top: 32px; font-size: 13px; color: var(--muted); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--navy); overflow: hidden; }
.testimonials .section-h2 { color: #fff; }
.testimonials .section-sub { color: rgba(255,255,255,.55); }
.testimonials .section-tag { background: rgba(56,189,248,.1); color: var(--accent); border-color: rgba(56,189,248,.2); }

.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 56px;
}
.testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: background .25s;
}
.testi-card:hover { background: rgba(255,255,255,.09); }
.testi-stars { color: #FBD450; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 22px; font-style: italic; font-weight: 300; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--navy); flex-shrink: 0;
}
.av-1 { background: var(--accent); }
.av-2 { background: #A78BFA; }
.av-3 { background: #4ADE80; }
.testi-name { font-size: 14px; font-weight: 600; color: #fff; }
.testi-role { font-size: 12px; color: rgba(255,255,255,.45); }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--gray-50); }
.faq-list { max-width: 720px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer;
  font-size: 15.5px; font-weight: 600; color: var(--navy);
  gap: 16px; user-select: none;
}
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--light-bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--mid);
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--mid); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  font-size: 14.5px; color: var(--muted); line-height: 1.75;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--mid), var(--navy));
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(56,189,248,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(59,130,246,.15) 0%, transparent 50%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-family: var(--font-head); font-size: clamp(30px,4vw,46px); font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 16px; }
.cta-sub { font-size: 18px; color: rgba(255,255,255,.65); margin-bottom: 40px; font-weight: 300; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-small { display: block; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.45); }

/* ===== FOOTER ===== */
footer {
  background: var(--gray-800);
  color: rgba(255,255,255,.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.45); margin: 12px 0 20px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 16px; color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--mid); color: #fff; }
.footer-col-title {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: #fff; letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-payments { display: flex; gap: 8px; align-items: center; }
.payment-badge {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px; padding: 4px 10px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5);
  letter-spacing: .3px;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan-card.featured { transform: none; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 56px auto 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero { min-height: auto; }
  .hero-inner { padding: 60px 0 80px; }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-steps::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .nav-links, .btn-ghost { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== CORREÇÃO MENU ===== */
.mobile-menu {
  display: none !important;
}
.mobile-menu.open {
  display: block !important;
}

/* Remove bullets e estilos do Storefront no menu */
.nav-links li {
  list-style: none !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.nav-links li::before,
.nav-links li::after {
  display: none !important;
}
.nav-links {
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove bullets do menu mobile */
.mobile-menu ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.mobile-menu ul li {
  list-style: none !important;
  background: none !important;
}
.mobile-menu ul li::before {
  display: none !important;
}
