*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #111214;
  --surface:   #1a1c1f;
  --card:      #222428;
  --blue:      #7BA6E8;
  --blue-dim:  rgba(123,166,232,0.15);
  --blue-border: rgba(123,166,232,0.25);
  --mag-start: #c44ec4;
  --mag-end:   #8b4ec4;
  --mag-border: rgba(196,78,196,0.3);
  --white:     #ffffff;
  --body:      #e0e0e0;
  --muted:     #888888;
  --border:    rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--body);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: rgba(17,18,20,0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.nav-logo img { max-width: 150px; height: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 13px;
  font-weight: 600; letter-spacing: 0.5px; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  background: linear-gradient(135deg, var(--mag-start), var(--mag-end));
  color: #fff !important; padding: 12px 28px; border-radius: 50px;
  font-weight: 700; font-size: 13px; text-decoration: none;
  box-shadow: 0 4px 15px rgba(196,78,196,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav:hover { color: #fff !important; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(196,78,196,0.5); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(123,166,232,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(196,78,196,0.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(123,166,232,0.1); border: 1px solid var(--blue-border);
  border-radius: 50px; padding: 6px 16px; margin-bottom: 32px;
  font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 2px; text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero h1 em { font-style: italic; color: var(--blue); }
.hero-sub {
  font-size: 17px; color: var(--body); max-width: 580px;
  margin-bottom: 44px; line-height: 1.75;
}
.hero-sub strong { color: var(--blue); font-weight: 700; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.btn-mag {
  background: linear-gradient(135deg, var(--mag-start), var(--mag-end));
  color: #fff; padding: 16px 40px; border-radius: 50px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(196,78,196,0.4);
  transition: transform 0.2s, box-shadow 0.2s; display: inline-block;
}
.btn-mag:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,78,196,0.55); }
.btn-outline {
  background: transparent; color: var(--blue); padding: 16px 40px;
  border-radius: 50px; border: 1.5px solid var(--blue-border);
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background 0.2s, border-color 0.2s; display: inline-block;
}
.btn-outline:hover { background: var(--blue-dim); border-color: var(--blue); }

.hero-stats {
  display: flex; gap: 0; border-top: 1px solid var(--border);
  padding-top: 40px;
}
.stat {
  flex: 1; padding-right: 40px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; padding-right: 0; padding-left: 40px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 38px; color: var(--white); line-height: 1;
  margin-bottom: 4px;
}
.stat-num span { color: var(--blue); }
.stat-label { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.5px; }

/* ── SECTION BASE ── */
section { padding: 100px 60px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag {
  font-size: 11px; font-weight: 700; color: var(--blue);
  opacity: 0.6; letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.section-tag::after {
  content: ''; flex: 1; max-width: 60px; height: 1px;
  background: var(--blue-border);
}
.section-title {
  font-size: 32px; font-weight: 800; color: var(--white);
  letter-spacing: -0.5px; margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--muted); margin-bottom: 56px; max-width: 520px; }

/* ── CLIENTES ── */
.clients-section {
  padding: 20px 60px 40px;
  background: var(--bg);
}
.clients-inner {
  max-width: 1100px; margin: 0 auto;
  background: #f0f0f0;
  border-radius: 20px;
  padding: 36px 48px;
}
.clients-label {
  text-align: center; font-size: 11px; color: #888;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 32px;
}
.clients-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 56px; flex-wrap: wrap; max-width: 900px; margin: 0 auto;
}
.client-logo {
  display: flex; align-items: center; justify-content: center;
  width: 140px; height: 56px; flex-shrink: 0;
}
.client-logo img {
  max-height: 40px; max-width: 120px; width: auto; height: auto;
  object-fit: contain;
  filter: brightness(0); opacity: 0.45;
  transition: opacity 0.2s;
  display: block;
}
.client-logo:hover img { opacity: 0.8; }
.client-fallback {
  font-size: 13px; font-weight: 700; color: #555;
  letter-spacing: 0.5px; opacity: 0.45;
  transition: opacity 0.2s; text-align: center;
}
.client-logo:hover .client-fallback { opacity: 0.8; }

/* ── PROBLEMA ── */
.problema-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.problema-text p { color: var(--body); margin-bottom: 16px; line-height: 1.8; }
.problema-text strong { color: var(--blue); font-weight: 700; }
.context-box {
  background: var(--card); border-left: 3px solid var(--blue);
  border-radius: 0 12px 12px 0; padding: 24px 28px; margin-top: 24px;
}
.context-box p { font-size: 14px; color: var(--body); margin: 0; }
.pain-cards { display: flex; flex-direction: column; gap: 16px; }
.pain-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: border-color 0.2s;
}
.pain-card:hover { border-color: var(--blue-border); }
.pain-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.pain-card h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.pain-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── SERVICIOS / PLANES ── */
.planes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
  position: relative; overflow: hidden;
}
.plan-card:hover { transform: translateY(-4px); border-color: var(--blue-border); }
.plan-card.featured {
  border-color: var(--mag-border);
  background: linear-gradient(160deg, #222428 0%, #1e1922 100%);
}
.plan-card.featured::before {
  content: 'MÁS ELEGIDO';
  position: absolute; top: 20px; right: -30px;
  background: linear-gradient(135deg, var(--mag-start), var(--mag-end));
  color: #fff; font-size: 9px; font-weight: 800; letter-spacing: 2px;
  padding: 5px 44px; transform: rotate(45deg);
}
.plan-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: var(--blue); text-transform: uppercase; margin-bottom: 16px;
  display: inline-block;
}
.plan-card.featured .plan-badge { color: #c44ec4; }
.plan-name { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.plan-tagline { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
.plan-price {
  font-family: 'DM Serif Display', serif;
  font-size: 44px; color: var(--white); line-height: 1;
  margin-bottom: 6px;
}
.plan-price-note { font-size: 12px; color: var(--muted); margin-bottom: 28px; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.plan-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--body); }
.plan-list li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.plan-card.featured .plan-list li::before { color: #c44ec4; }
.plan-result {
  background: rgba(123,166,232,0.07); border-radius: 10px;
  padding: 14px 16px; font-size: 13px; color: var(--body); line-height: 1.6;
  margin-bottom: 24px; border-left: 2px solid var(--blue);
}
.plan-card.featured .plan-result { border-left-color: #c44ec4; background: rgba(196,78,196,0.07); }
.btn-plan {
  display: block; text-align: center; padding: 14px;
  border-radius: 50px; font-weight: 700; font-size: 14px;
  text-decoration: none; transition: all 0.2s;
  border: 1.5px solid var(--blue-border); color: var(--blue);
}
.btn-plan:hover { background: var(--blue-dim); }
.plan-card.featured .btn-plan {
  background: linear-gradient(135deg, var(--mag-start), var(--mag-end));
  border-color: transparent; color: #fff;
  box-shadow: 0 4px 16px rgba(196,78,196,0.35);
}
.plan-card.featured .btn-plan:hover { box-shadow: 0 6px 24px rgba(196,78,196,0.55); transform: translateY(-1px); }

/* ── HIGHLIGHT BAND ── */
.highlight-band {
  padding: 80px 60px;
  background: linear-gradient(135deg, rgba(123,166,232,0.05) 0%, rgba(196,78,196,0.05) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center;
}
.highlight-band blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--white); max-width: 820px; margin: 0 auto;
  line-height: 1.35; font-style: italic;
}
.highlight-band blockquote em { color: var(--blue); font-style: normal; }

/* ── CÓMO TRABAJAMOS ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  transition: border-color 0.2s;
}
.step-card:hover { border-color: var(--blue-border); }
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px; color: var(--blue); opacity: 0.25;
  line-height: 1; margin-bottom: 16px;
}
.step-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── EQUIPO ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 28px; text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.team-card:hover { border-color: var(--blue-border); transform: translateY(-3px); }
.team-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  margin: 0 auto 20px;
  border: 2px solid var(--blue-border);
  overflow: hidden; background: #1a2535;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; color: var(--blue);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-name { font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--blue); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.team-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── CTA FINAL ── */
.cta-final {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 100px 60px; text-align: center;
}
.cta-final h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white); margin-bottom: 16px; line-height: 1.2;
}
.cta-final h2 em { font-style: italic; color: var(--blue); }
.cta-final p { font-size: 16px; color: var(--muted); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-final .btn-mag { padding: 18px 52px; font-size: 15px; }

/* ── BLOG / NOVEDADES ── */
#blog { padding: 100px 60px; background: var(--surface); border-top: 1px solid var(--border); }

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

.blog-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s, border-color 0.2s; cursor: pointer;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--blue-border); }

.blog-card-img {
  width: 100%; height: 180px; object-fit: cover; display: block;
  filter: brightness(0.9);
}
.blog-card-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, rgba(123,166,232,0.15), rgba(196,78,196,0.15));
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 28px; color: rgba(255,255,255,0.15); letter-spacing: 4px;
}

.blog-card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; }
.blog-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue); background: var(--blue-dim);
  padding: 3px 8px; border-radius: 20px;
}
.blog-date { font-size: 11px; color: var(--muted); }
.blog-card-title { font-size: 15px; font-weight: 800; color: var(--white); line-height: 1.35; }
.blog-card-resumen { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.blog-card-cta {
  font-size: 12px; font-weight: 700; color: var(--blue);
  text-align: right; margin-top: 4px;
}
.blog-card-btn {
  align-self: flex-start; margin-top: 4px;
  background: transparent; color: var(--blue);
  border: 1.5px solid var(--blue-border); border-radius: 50px;
  padding: 8px 22px; font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.blog-card-btn:hover { background: var(--blue-dim); border-color: var(--blue); }

/* ── MODAL BLOG ── */
.blog-modal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.blog-modal.open { display: flex; }

.blog-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(4px);
}
.blog-modal-card {
  position: relative; z-index: 1;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; max-width: 680px; width: 100%;
  max-height: 90vh; overflow-y: auto;
}
.blog-modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); width: 32px; height: 32px; border-radius: 50%;
  font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, border-color 0.2s;
}
.blog-modal-close:hover { color: var(--white); border-color: var(--blue-border); }

.blog-modal-img-wrap { position: relative; height: 240px; overflow: hidden; border-radius: 20px 20px 0 0; }
.blog-modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-modal-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(123,166,232,0.15), rgba(196,78,196,0.15));
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 36px; color: rgba(255,255,255,0.12); letter-spacing: 6px;
}

.blog-modal-body { padding: 28px 32px; }
.blog-modal-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.blog-modal-title { font-size: 22px; font-weight: 800; color: var(--white); line-height: 1.25; margin-bottom: 10px; }
.blog-modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.blog-modal-content { font-size: 14px; color: var(--body); line-height: 1.8; }
.blog-modal-content p { margin-bottom: 14px; }

/* ── FORMULARIO DE CONTACTO ── */
.contact-section { padding: 100px 60px; background: var(--surface); border-top: 1px solid var(--border); }

.contact-form { max-width: 720px; display: flex; flex-direction: column; gap: 20px; }

.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.contact-field { display: flex; flex-direction: column; gap: 6px; position: relative; }

.contact-field label {
  font-size: 12px; font-weight: 700; color: var(--white);
  letter-spacing: 0.5px; text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
  color: var(--white); font-family: 'Montserrat', sans-serif;
  font-size: 14px; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; width: 100%;
}

.contact-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px; cursor: pointer;
}

.contact-field select option { background: var(--card); color: var(--white); }

.contact-field textarea { resize: vertical; min-height: 110px; }

.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--muted); }

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--blue-border);
  box-shadow: 0 0 0 3px rgba(123,166,232,0.08);
}

.contact-field.has-error input,
.contact-field.has-error select,
.contact-field.has-error textarea {
  border-color: rgba(220,50,50,0.6);
}

.field-error {
  font-size: 11px; color: #f87171; display: none;
}
.contact-field.has-error .field-error { display: block; }

.contact-submit-row { margin-top: 4px; }

.contact-btn { border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; }
.contact-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

.contact-feedback {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25);
  border-radius: 10px; padding: 14px 18px;
  font-size: 14px; color: #4ade80;
}
.contact-feedback--error {
  background: rgba(239,68,68,0.08); border-color: rgba(239,68,68,0.25); color: #f87171;
}
.contact-feedback--error a { color: #f87171; }

/* ── FOOTER ── */
footer {
  background: #0d0e10;
  border-top: 1px solid var(--border);
  padding: 60px 60px 40px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 60px; padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.footer-brand img { max-width: 140px; height: auto; margin-bottom: 10px; }
.footer-tagline { font-size: 9px; color: var(--blue); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--muted); max-width: 280px; line-height: 1.7; }
.footer-cols { display: flex; gap: 80px; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a, .footer-col p {
  display: block; font-size: 13px; color: var(--muted);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 14px; transition: border-color 0.2s, background 0.2s;
}
.social-link:hover { border-color: var(--blue-border); background: var(--blue-dim); }

/* ── NOSOTROS STRIP ── */
.nosotros-strip {
  background: var(--surface);
  border-radius: 20px; padding: 48px;
  display: flex; align-items: center; gap: 60px;
  border: 1px solid var(--border); max-width: 1100px; margin: 0 auto;
}
.nosotros-text { flex: 1; }
.nosotros-text p { font-size: 15px; color: var(--body); line-height: 1.8; }
.nosotros-text strong { color: var(--blue); }
.nosotros-text a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-weight: 700; font-size: 14px; text-decoration: none;
  margin-top: 20px; transition: gap 0.2s;
}
.nosotros-text a:hover { gap: 14px; }
.nosotros-accent {
  font-family: 'DM Serif Display', serif;
  font-size: 80px; color: var(--blue); opacity: 0.25;
  line-height: 1; flex-shrink: 0; user-select: none;
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section, .hero, .highlight-band, .cta-final { padding-left: 24px; padding-right: 24px; }
  .planes-grid, .steps, .team-grid { grid-template-columns: 1fr; }
  .problema-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 20px; }
  .stat:last-child { border-bottom: none; padding: 0; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-cols { flex-direction: column; gap: 40px; }
  .nosotros-strip { flex-direction: column; gap: 24px; }
  .nosotros-accent { display: none; }
  .clients-logos { gap: 28px; }
  footer { padding: 48px 24px 32px; }
  .contact-section { padding: 80px 24px; }
  .contact-row { grid-template-columns: 1fr; }
}
