.elementor-221 .elementor-element.elementor-element-51561ee{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-c86f147 */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-light: #F5F7FA;
  --bg-dark: #0F172A;
  --accent: #2563EB;
  --accent-light: #3B82F6;
  --accent-glow: rgba(37,99,235,0.25);
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-white: #F8FAFC;
  --text-soft: #CBD5E1;
  --border: rgba(37,99,235,0.12);
  --card-bg: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-blue: 0 8px 32px rgba(37,99,235,0.22);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  padding: 100px 24px 60px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 80%);
}
.hero-glow {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.18) 0%, transparent 70%);
  top: 10%; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.hero-content { position: relative; text-align: center; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3);
  color: #93C5FD; padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.5px;
  margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}
.hero-badge::before { content: '●'; font-size: 8px; color: #60A5FA; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp .7s .1s ease both;
}
h1 em { font-style: normal; color: var(--accent-light); }
.hero-sub {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #94A3B8;
  max-width: 520px; margin: 0 auto 40px;
  font-weight: 400; line-height: 1.65;
  animation: fadeUp .7s .2s ease both;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  animation: fadeUp .7s .3s ease both;
  margin-bottom: 60px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 16px 32px; border-radius: 50px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  text-decoration: none; transition: all .2s;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 16px 48px rgba(37,99,235,0.4); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); color: var(--text-soft);
  padding: 16px 32px; border-radius: 50px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.1);
  transition: all .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }

/* MOCKUP DE TELÉFONO */
.phone-wrap {
  position: relative; display: inline-block;
  animation: fadeUp .8s .4s ease both;
}
.phone {
  width: 220px;
  background: #1E293B;
  border-radius: 36px;
  padding: 14px 10px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  margin: 0 auto;
}
.phone-notch {
  width: 60px; height: 10px;
  background: #0F172A; border-radius: 10px;
  margin: 0 auto 10px;
}
.phone-screen {
  background: #F1F5F9;
  border-radius: 24px; overflow: hidden;
}

/* Estilos de la UI de la app */
.app-topbar {
  background: #fff; padding: 10px 12px 8px;
  border-bottom: 1px solid #E2E8F0;
}
.app-top-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.app-title { font-size: 0.72rem; font-weight: 800; color: #0F172A; font-family: var(--font-display); }
.app-status-open {
  background: #DCFCE7; color: #16A34A;
  font-size: 0.48rem; font-weight: 700; padding: 2px 7px; border-radius: 20px;
}
.app-contest-name { font-size: 0.5rem; color: #64748B; margin-bottom: 6px; }
.app-progress-label { font-size: 0.45rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: #94A3B8; margin-bottom: 3px; }
.app-progress-text { font-size: 0.5rem; color: #334155; margin-bottom: 4px; }
.app-progress-bar { height: 4px; background: #E2E8F0; border-radius: 4px; overflow: hidden; }
.app-progress-fill { height: 100%; width: 50%; background: var(--accent); border-radius: 4px; }

.app-body { padding: 8px 10px; }

.app-section-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px;
}
.app-section-title { font-size: 0.6rem; font-weight: 700; color: #0F172A; }
.app-icons { display: flex; gap: 4px; }
.app-icon-btn {
  width: 18px; height: 18px; border-radius: 5px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.45rem;
}

.app-card {
  background: #fff; border-radius: 10px;
  border: 1px solid #E2E8F0; padding: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.app-card-header {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap; margin-bottom: 6px;
}
.app-code-label { font-size: 0.42rem; color: #94A3B8; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; display: block; margin-bottom: 1px; }
.app-code-box {
  border: 1px solid #CBD5E1; border-radius: 6px;
  padding: 4px 8px; margin-right: 4px;
}
.app-code { font-size: 0.7rem; font-weight: 800; color: #0F172A; font-family: var(--font-display); }
.app-tag {
  font-size: 0.42rem; font-weight: 600; padding: 2px 6px; border-radius: 12px;
}
.tag-blind { background: #F3F4F6; color: #374151; }
.tag-sync  { background: #DCFCE7; color: #15803D; }
.tag-draft { background: #FEF9C3; color: #854D0E; }
.app-note { font-size: 0.48rem; color: #64748B; margin-bottom: 4px; }
.app-criteria-count { font-size: 0.45rem; color: #22C55E; font-weight: 600; }

.app-criterion { margin-top: 8px; }
.app-crit-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3px; }
.app-crit-name { font-size: 0.58rem; font-weight: 700; color: #0F172A; }
.app-crit-filled { background: #DCFCE7; color: #16A34A; font-size: 0.42rem; font-weight: 700; padding: 2px 6px; border-radius: 10px; }
.app-crit-meta { font-size: 0.42rem; color: #94A3B8; margin-bottom: 5px; }
.app-score-btns { display: grid; grid-template-columns: repeat(10, 1fr); gap: 2px; }
.score-btn {
  aspect-ratio: 1; border-radius: 4px;
  font-size: 0.48rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
}
.score-btn.red    { background: #FEE2E2; color: #991B1B; }
.score-btn.orange { background: #FEF3C7; color: #92400E; }
.score-btn.blue   { background: var(--accent); color: #fff; }
.score-btn.blue-light { background: #DBEAFE; color: #1E40AF; }
.score-btn.green  { background: #16A34A; color: #fff; }
.score-btn.green-light { background: #DCFCE7; color: #166534; }

.app-shortcuts {
  background: #0F172A; padding: 5px 10px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.shortcut { font-size: 0.4rem; color: #94A3B8; }
.shortcut strong { color: #E2E8F0; }

.phone-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.2) 0%, transparent 70%);
  z-index: -1; pointer-events: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── SECCIONES COMUNES ── */
section { padding: 80px 24px; }
@media(min-width:768px){ section { padding: 100px 48px; } }
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800; color: var(--text-dark);
  line-height: 1.15; letter-spacing: -0.03em;
  margin-bottom: 16px;
}
h2 em { font-style: normal; color: var(--accent); }
.section-desc {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 540px; line-height: 1.7; margin-bottom: 52px;
}
.centered { text-align: center; }
.centered .section-desc { margin-left: auto; margin-right: auto; }
.max-w { max-width: 1100px; margin: 0 auto; }

/* ── CÓMO FUNCIONA ── */
.how-section { background: var(--bg-light); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px; margin-top: 16px;
}
@media(min-width:640px){ .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative;
  box-shadow: var(--shadow-md); border: 1px solid rgba(37,99,235,0.07);
  transition: transform .25s, box-shadow .25s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  color: rgba(37,99,235,0.08); position: absolute; top: 20px; right: 24px;
  line-height: 1;
}
.step-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(37,99,235,0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  border: 1px solid rgba(37,99,235,0.1);
}
.step-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.step-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ── BENEFICIOS ── */
.benefits-section { background: var(--bg-dark); overflow: hidden; position: relative; }
.benefits-bg {
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.benefits-section h2 { color: var(--text-white); }
.benefits-section .section-desc { color: #94A3B8; }
.benefits-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px;
}
@media(min-width:640px){ .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
.benefit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 28px;
  transition: background .2s, border-color .2s;
}
.benefit-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(37,99,235,0.3); }
.benefit-icon { font-size: 2rem; margin-bottom: 16px; }
.benefit-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: #E2E8F0; margin-bottom: 8px; }
.benefit-desc { font-size: 0.9rem; color: #64748B; line-height: 1.65; }

/* ── PARA QUIÉN ES ── */
.forwho-section { background: var(--bg-light); }
.audience-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px;
}
@media(min-width:640px){ .audience-grid { grid-template-columns: repeat(3, 1fr); } }
.audience-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: all .25s;
}
.audience-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(37,99,235,0.2); }
.audience-emoji { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.audience-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.audience-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── FUNCIONALIDADES ── */
.features-section { background: var(--bg-dark); }
.features-section h2 { color: var(--text-white); }
.features-section .section-desc { color: #94A3B8; }
.features-list {
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
}
@media(min-width:640px){ .features-list { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .features-list { grid-template-columns: repeat(3, 1fr); } }
.feature-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md); padding: 24px;
  transition: all .2s;
}
.feature-item:hover { background: rgba(37,99,235,0.08); border-color: rgba(37,99,235,0.25); }
.feature-check {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(37,99,235,0.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; border: 1px solid rgba(37,99,235,0.25);
}
.feature-text h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: #E2E8F0; margin-bottom: 4px; }
.feature-text p { font-size: 0.85rem; color: #64748B; line-height: 1.55; }

/* ── TESTIMONIOS ── */
.social-section { background: var(--bg-light); }
.testi-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px;
}
@media(min-width:768px){ .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); position: relative;
}
.testi-stars { color: #FBBF24; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 0.92rem; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #1D4ED8);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff; font-weight: 700;
  font-family: var(--font-display);
}
.testi-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.testi-role { font-size: 0.8rem; color: var(--text-muted); }
.placeholder-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.08); border: 1px dashed rgba(37,99,235,0.25);
  color: var(--accent); padding: 8px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 500; margin-top: 12px;
}

/* ── PRECIOS ── */
.pricing-section { background: var(--bg-dark); position: relative; overflow: hidden; }
.pricing-bg {
  position: absolute; bottom: -150px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-section h2 { color: var(--text-white); }
.pricing-section .section-desc { color: #94A3B8; }
.pricing-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
@media(min-width:640px){ .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .pricing-grid { grid-template-columns: repeat(4, 1fr); } }
.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl); padding: 36px 28px;
  text-align: center; position: relative;
  transition: all .25s;
  display: flex; flex-direction: column;
}
.price-card .price-features { flex: 1; }
.price-card .btn-price { margin-top: auto; }
.price-card .pack-unavailable { margin-top: auto; }
.price-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.price-card.featured {
  background: linear-gradient(145deg, rgba(37,99,235,0.2), rgba(37,99,235,0.08));
  border-color: rgba(37,99,235,0.4);
  box-shadow: 0 0 0 1px rgba(37,99,235,0.4), var(--shadow-blue);
}
.price-ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  padding: 4px 16px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
  white-space: nowrap;
}
.price-tier { font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #64748B; margin-bottom: 12px; }
.price-card.featured .price-tier { color: #93C5FD; }
.price-val {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
  color: #F8FAFC; margin-bottom: 4px;
  display: flex; align-items: baseline; justify-content: center;
  flex-wrap: wrap; gap: 4px;
}
.price-display { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: #F8FAFC; }
.price-suffix { font-size: 1rem; font-weight: 400; color: #64748B; }
.price-unit   { font-size: 1rem; font-weight: 400; color: #64748B; }
.price-desc { font-size: 0.85rem; color: #64748B; margin-bottom: 24px; }
.price-features { list-style: none; margin-bottom: 28px; text-align: left; }
.price-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: #94A3B8; padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.price-features li::before { content: '✓'; color: var(--accent-light); font-weight: 700; flex-shrink: 0; }
.btn-price {
  display: block; width: 100%;
  background: rgba(37,99,235,0.15); color: #93C5FD;
  border: 1px solid rgba(37,99,235,0.3); border-radius: 50px;
  padding: 14px; font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  text-decoration: none; transition: all .2s; cursor: pointer;
}
.btn-price:hover { background: rgba(37,99,235,0.3); }
.price-card.free-card {
  border-color: rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.04);
}
.price-card.free-card:hover { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.45); }
.price-card.free-card .price-tier { color: #4ADE80; }
.btn-free {
  background: rgba(34,197,94,0.15) !important;
  color: #4ADE80 !important;
  border-color: rgba(34,197,94,0.35) !important;
}
.btn-free:hover { background: rgba(34,197,94,0.28) !important; }
.price-card.featured .btn-price {
  background: var(--accent); color: #fff;
  border-color: transparent; box-shadow: var(--shadow-blue);
}
.price-card.featured .btn-price:hover { background: var(--accent-light); }
.pricing-toggle-wrap {
  display: flex; justify-content: center; margin-bottom: 44px;
}
.pricing-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px; padding: 5px; gap: 4px;
}
.ptoggle-btn {
  padding: 10px 20px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  color: #64748B; background: transparent; border: none; cursor: pointer;
  transition: all .22s; display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.ptoggle-btn:hover { color: #94A3B8; }
.ptoggle-btn.active {
  background: var(--accent); color: #fff;
  box-shadow: var(--shadow-blue);
}
.ptoggle-save {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 0.68rem; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
  letter-spacing: 0.3px; text-transform: uppercase;
}
.ptoggle-btn:not(.active) .ptoggle-save {
  background: rgba(37,99,235,0.15);
  color: #93C5FD;
}
.price-saving {
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25);
  color: #4ADE80; font-size: 0.78rem; font-weight: 700;
  padding: 5px 14px; border-radius: 20px;
  text-align: center; margin-bottom: 10px;
}
.pack-unavailable {
  margin-top: auto; padding-top: 8px;
  text-align: center; font-size: 0.8rem;
  color: #475569; font-style: italic;
}
.pricing-rules {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  justify-content: center; margin-top: 36px;
}
.pricing-rules span {
  font-size: 0.82rem; color: #475569;
  display: flex; align-items: center; gap: 6px;
}
.pricing-note { text-align: center; margin-top: 32px; font-size: 0.88rem; color: #475569; }
.pricing-note a { color: var(--accent-light); text-decoration: none; }

/* ── LLAMADA A LA ACCIÓN FINAL ── */
.cta-section {
  background: var(--bg-light); text-align: center;
  padding: 100px 24px;
}
.cta-box {
  background: linear-gradient(135deg, var(--bg-dark), #1E293B);
  border-radius: var(--radius-xl); padding: 64px 32px;
  max-width: 700px; margin: 0 auto;
  border: 1px solid rgba(37,99,235,0.2);
  box-shadow: 0 0 80px rgba(37,99,235,0.1), var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { color: var(--text-white); max-width: 480px; margin: 0 auto 16px; }
.cta-box p { color: #94A3B8; margin-bottom: 40px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-main {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 18px 36px; border-radius: 50px;
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 700;
  text-decoration: none; box-shadow: var(--shadow-blue);
  transition: all .2s; position: relative;
}
.btn-cta-main:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 20px 60px rgba(37,99,235,0.45); }
.btn-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); color: #CBD5E1;
  padding: 18px 36px; border-radius: 50px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.1);
  transition: all .2s;
}
.btn-cta-secondary:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ── PIE DE PÁGINA ── */
footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 24px;
}
@media(min-width:768px){ footer { padding: 48px 48px; } }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 32px;
}
@media(min-width:768px){
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.footer-brand .nav-logo { color: var(--text-soft); margin-bottom: 12px; display: block; }
.footer-tagline { font-size: 0.85rem; color: #475569; max-width: 240px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h5 { font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #475569; margin-bottom: 4px; }
.footer-links a { font-size: 0.88rem; color: #64748B; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--accent-light); }
.footer-bottom {
  max-width: 1100px; margin: 32px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 0.8rem; color: #334155;
}

/* ── DIVISOR ── */
.section-divider {
  height: 1px; background: linear-gradient(90deg, transparent, rgba(37,99,235,0.2), transparent);
  border: none; margin: 0;
}

/* ── COMPLEMENTOS ── */
.addons-section { background: var(--bg-dark); position: relative; overflow: hidden; }
.addons-section h2 { color: var(--text-white); }
.addons-section .section-desc { color: #94A3B8; }
.addons-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media(min-width:640px)  { .addons-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .addons-grid { grid-template-columns: repeat(3,1fr); } }

.addon-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; position: relative;
  transition: background .2s, border-color .2s, transform .25s;
}
.addon-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-3px);
}
.addon-card-featured {
  background: linear-gradient(145deg, rgba(37,99,235,0.18), rgba(37,99,235,0.06));
  border: 1px solid rgba(37,99,235,0.35);
  box-shadow: 0 0 0 1px rgba(37,99,235,0.25), var(--shadow-blue);
}
.addon-card-featured:hover { background: linear-gradient(145deg, rgba(37,99,235,0.26), rgba(37,99,235,0.1)); }

.addon-ribbon {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 5px 12px; border-radius: 50px;
  box-shadow: var(--shadow-blue);
}
.addon-icon { font-size: 1.8rem; margin-bottom: 14px; }
.addon-title {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: #E2E8F0; margin-bottom: 10px; line-height: 1.2;
}
.addon-price {
  display: flex; align-items: baseline; gap: 3px; margin-bottom: 12px;
}
.addon-cur { font-size: 1rem; font-weight: 600; color: #94A3B8; }
.addon-val {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 800;
  color: #F8FAFC; line-height: 1; letter-spacing: -0.03em;
}
.addon-desc { font-size: 0.88rem; color: #64748B; line-height: 1.65; flex: 1; margin-bottom: 24px; }

.addon-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 13px 20px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  text-decoration: none; transition: all .2s; cursor: pointer;
  background: rgba(37,99,235,0.12); color: #93C5FD;
  border: 1px solid rgba(37,99,235,0.28);
  margin-top: auto;
}
.addon-btn:hover { background: rgba(37,99,235,0.24); border-color: rgba(37,99,235,0.5); }
.addon-btn-primary {
  background: var(--accent); color: #fff;
  border-color: transparent; box-shadow: var(--shadow-blue);
}
.addon-btn-primary:hover { background: var(--accent-light); box-shadow: 0 12px 36px rgba(37,99,235,0.4); }

/* ── ANIMACIÓN REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Toast */
.cp-toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  padding: 14px 24px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  z-index: 9999; opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  white-space: nowrap; pointer-events: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.cp-toast-ok  { background: #052e16; color: #4ade80; border: 1px solid rgba(74,222,128,0.3); }
.cp-toast-err { background: #450a0a; color: #f87171; border: 1px solid rgba(248,113,113,0.3); }
.cp-toast-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Layout responsivo del hero */
@media(min-width:768px){
  .hero { padding: 100px 48px 80px; }
  .hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; text-align: left; max-width: 1100px; margin: 0 auto; }
  .hero-content { text-align: left; }
  .hero-ctas { justify-content: flex-start; }
  h1 { font-size: clamp(2.6rem, 4vw, 3.6rem); }
  .hero-sub { margin-left: 0; }
  .hero-badge { margin-left: 0; }
  .phone { width: 260px; }
}/* End custom CSS */