/* ============================================================
   FLOTAS GPS · Design system v2
   Reusable design tokens for index-v2, rastreo-v2, mdvr-v2, radios-v2
   Per-page accent: override --accent / --accent-2 in <style> tag.
   ============================================================ */

:root {
  --brand: #0071e3;
  --brand-2: #5856d6;
  --brand-3: #af52de;
  --accent: var(--brand);
  --accent-2: var(--brand-2);
  --accent-3: var(--brand-3);
  --ink: #0a0a0c;
  --ink-soft: #1d1d1f;
  --muted: #86868b;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.011em;
  color: var(--ink);
  background: #fff;
}
html { scroll-behavior: smooth; }

.display {
  font-family: 'Inter', -apple-system, sans-serif;
  letter-spacing: -0.04em;
  font-weight: 700;
  line-height: 0.98;
}
.serif { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.text-apple-secondary { color: var(--muted); }
.text-apple-primary { color: var(--ink-soft); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── NAV ── */
.apple-nav {
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  background-color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* ── PILLS ── */
.pill { border-radius: 980px; padding: 12px 22px; font-size: 14px; font-weight: 500; transition: all 0.25s ease; display: inline-flex; align-items: center; gap: 8px; line-height: 1; }
.pill-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: white;
  box-shadow: 0 8px 28px -8px rgba(0,113,227,0.55), 0 2px 8px rgba(88,86,214,0.25);
}
.pill-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -8px rgba(0,113,227,0.7), 0 4px 12px rgba(88,86,214,0.35); }
.pill-ghost { background: rgba(0,0,0,0.04); color: var(--ink); }
.pill-ghost:hover { background: rgba(0,0,0,0.08); }
.pill-outline { border: 1px solid rgba(0,0,0,0.12); color: var(--ink); }
.pill-outline:hover { background: var(--ink); color: white; }
.pill-dark { background: var(--ink); color: white; }
.pill-dark:hover { background: #2a2a2c; }

/* ── CTA EMILIA ── */
.cta-emilia {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 60%, var(--accent-3) 100%);
  color: white;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 40px -8px rgba(0,113,227,0.55), 0 4px 14px rgba(88,86,214,0.30);
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  border: none;
}
.cta-emilia::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
  background-size: 300% 100%;
  z-index: -1;
  filter: blur(14px);
  opacity: 0.5;
  animation: glowShimmer 4s linear infinite;
}
.cta-emilia::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  z-index: 0;
}
.cta-emilia:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 50px -8px rgba(0,113,227,0.75), 0 8px 20px rgba(175,82,222,0.35); }
.cta-emilia:hover::after { transform: translateX(100%); }
.cta-emilia > * { position: relative; z-index: 1; }
@keyframes glowShimmer { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }

.cta-icon-pulse {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: grid; place-items: center;
  animation: pulseRing 2.4s infinite;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ── ANIMATIONS ── */
@keyframes routeDash { to { stroke-dashoffset: -160; } }
.route-line { stroke-dasharray: 8 6; animation: routeDash 6s linear infinite; }
@keyframes truckFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.truck-float { animation: truckFloat 4s ease-in-out infinite; }
.truck-float.t2 { animation-delay: 1.2s; }
.truck-float.t3 { animation-delay: 2.4s; }
@keyframes pingDot { 0% { transform: scale(0.9); opacity: 0.85; } 100% { transform: scale(2.6); opacity: 0; } }
.ping-dot { animation: pingDot 2.5s ease-out infinite; }

@keyframes notifBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.notif-blink { animation: notifBlink 1.6s ease-in-out infinite; }

@keyframes typingDot { 0%,60%,100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-5px); opacity: 1; } }
.typing-dot { animation: typingDot 1.3s infinite ease-in-out; display: inline-block; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes barRise { 0% { transform: scaleY(0.4); } 100% { transform: scaleY(1); } }
.metric-bar { transform-origin: bottom; animation: barRise 1.2s ease-out forwards; }

@keyframes counterTick { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.live-dot { animation: counterTick 1.4s ease-in-out infinite; }

@keyframes recBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.rec-blink { animation: recBlink 1.5s ease-in-out infinite; }

@keyframes scanV { 0% { top: 0; } 100% { top: 100%; } }
.scan-line { position: absolute; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent-3), transparent); animation: scanV 3s linear infinite; }

@keyframes signalWave { 0% { transform: scale(0.8); opacity: 0.9; } 100% { transform: scale(2.5); opacity: 0; } }
.signal-wave { animation: signalWave 2s ease-out infinite; }

@keyframes pttPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,199,89,0.6); }
  50% { box-shadow: 0 0 0 22px rgba(52,199,89,0); }
}
.ptt-pulse { animation: pttPulse 2s infinite; }

@keyframes temperatureFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.temp-float { animation: temperatureFloat 3s ease-in-out infinite; }

/* ── BG TECH ── */
.grid-bg {
  background-image:
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}
.grid-bg-dark {
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}
.radial-accent {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(0,113,227,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(88,86,214,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 90%, rgba(175,82,222,0.06) 0%, transparent 60%);
}

/* ── GLASS ── */
.glass {
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 8px 28px -6px rgba(15,23,42,0.10), 0 2px 6px rgba(15,23,42,0.04);
}
.glass-dark {
  background: rgba(20,20,22,0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── TEXT GRADIENTS ── */
.hero-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ink-gradient {
  background: linear-gradient(180deg, #1d1d1f 0%, #4a4a4f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── DASHBOARD CARD ── */
.dash-card {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(140deg, #0b1020 0%, #131932 45%, #1a1130 100%);
  box-shadow:
    0 40px 90px -30px rgba(0,113,227,0.45),
    0 25px 50px -25px rgba(88,86,214,0.35),
    0 0 0 1px rgba(255,255,255,0.06) inset;
}
.metric-num { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1; }

/* ── APPLE CARD ── */
.apple-card { border-radius: 24px; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease; }
.apple-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -16px rgba(15,23,42,0.18); }

/* ── SOLUTION CARD (page-internal) ── */
.solution-card {
  background: white;
  border-radius: 22px;
  padding: 28px;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(15,23,42,0.18); }
.solution-card:hover::before { transform: scaleX(1); }

/* ── PROBLEM CARD ── */
.problem-card {
  border-radius: 22px;
  padding: 28px;
  background: linear-gradient(160deg, #ffffff 0%, #f6f7fb 100%);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(15,23,42,0.18); }
.problem-card:hover::before { transform: scaleX(1); }

/* ── TECH CARD (dark sections) ── */
.tech-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
}

/* ── MARQUEE ── */
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-track { display: flex; animation: marquee 38s linear infinite; width: max-content; }

/* ── EMILIA BUBBLE ── */
.emilia-bubble {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(245,247,255,0.92));
  border: 1px solid rgba(0,113,227,0.18);
  box-shadow: 0 18px 40px -16px rgba(88,86,214,0.35), 0 4px 12px rgba(0,113,227,0.10);
  backdrop-filter: blur(14px);
}
.emilia-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 60%, var(--accent-3) 100%);
  display: grid; place-items: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  box-shadow: 0 6px 20px -4px rgba(88,86,214,0.55);
  position: relative;
}
.emilia-avatar::after {
  content: '';
  position: absolute; bottom: 2px; right: 2px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #34c759;
  border: 2px solid white;
}

/* ── HERO BULLET ── */
.check-bullet {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34c759, #30b350);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -2px rgba(52,199,89,0.45);
}

/* ── MODAL INDICATOR ── */
.modal-indicator { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: 999px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── TRUST DIVIDER ── */
.trust-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.12), transparent);
}

/* ── NAV DROPDOWN (Acceso clientes) · ghost button unificado ── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: #4a4a4f; font-weight: 500;
  background: transparent; border: 1px solid transparent; cursor: pointer;
  padding: 8px 12px; border-radius: 999px;
  font-family: inherit; transition: all 0.2s ease; line-height: 1;
  white-space: nowrap;
}
.nav-dropdown-trigger:hover { color: #000; background: rgba(0,0,0,0.04); }

/* ── PORTAL CLIENTE LINK · outline azul unificado con design system ── */
.nav-portal-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; font-size: 12.5px; font-weight: 500;
  border-radius: 999px;
  border: 1px solid #0071e3; color: #0071e3; background: white;
  transition: all 0.25s ease; line-height: 1;
  text-decoration: none; white-space: nowrap;
}
.nav-portal-link:hover {
  background: linear-gradient(135deg, #0071e3, #5856d6);
  color: white; border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(0,113,227,0.40);
}
.nav-dropdown-chevron { transition: transform 0.25s ease; }
.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown.open .nav-dropdown-chevron { transform: rotate(180deg); }
/* invisible bridge so hover doesn't drop while moving to panel */
.nav-dropdown::after {
  content: ''; position: absolute; top: 100%; right: 0;
  width: 290px; height: 14px; pointer-events: none;
}
.nav-dropdown:hover::after { pointer-events: auto; }
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 12px); right: 0;
  min-width: 290px; padding: 8px; border-radius: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 20px 50px -15px rgba(15,23,42,0.20), 0 8px 20px -10px rgba(0,113,227,0.10);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.open .nav-dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  transition: background 0.2s ease; text-decoration: none; color: inherit;
}
.nav-dropdown-item:hover { background: linear-gradient(135deg, rgba(0,113,227,0.06), rgba(88,86,214,0.04)); }
.nav-dropdown-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,113,227,0.08), rgba(88,86,214,0.05));
  border: 1px solid rgba(0,113,227,0.12);
  display: grid; place-items: center;
  color: #0071e3; flex-shrink: 0; transition: all 0.25s ease;
}
.nav-dropdown-item:hover .nav-dropdown-icon {
  background: linear-gradient(135deg, #0071e3, #5856d6);
  color: white; border-color: transparent;
}
.nav-dropdown-label { font-size: 13.5px; font-weight: 600; color: #1d1d1f; letter-spacing: -0.01em; }
.nav-dropdown-desc { font-size: 11px; color: #86868b; margin-top: 1px; letter-spacing: -0.005em; }

/* ── MOBILE MENU DRAWER ── */
#mobile-menu {
  position: fixed; top: 56px; left: 0; right: 0; z-index: 49;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 30px -15px rgba(15,23,42,0.15);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
#mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mm-link {
  display: block; padding: 11px 16px; border-radius: 10px;
  font-size: 14.5px; font-weight: 500; color: #1d1d1f;
  text-decoration: none; transition: background 0.2s ease;
}
.mm-link:hover { background: rgba(0,0,0,0.04); }
.mm-section { font-size: 10px; font-weight: 700; color: #9aa1ab; letter-spacing: 0.10em; text-transform: uppercase; padding: 14px 16px 6px; }
.mm-access {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; border-radius: 10px;
  text-decoration: none; color: inherit; transition: background 0.2s ease;
}
.mm-access:hover { background: rgba(0,0,0,0.04); }
.mm-access-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,113,227,0.08), rgba(88,86,214,0.05));
  border: 1px solid rgba(0,113,227,0.12);
  display: grid; place-items: center; color: #0071e3; flex-shrink: 0;
}
.mm-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 8px; padding: 12px 20px; border-radius: 999px;
  background: #1d1d1f; color: white; font-size: 13.5px; font-weight: 600;
  text-decoration: none; transition: background 0.2s ease;
}
.mm-cta:hover { background: #2a2a2c; }
.hamburger-btn { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 8px; transition: background 0.2s ease; }
.hamburger-btn:hover { background: rgba(0,0,0,0.04); }

/* ── Accesibilidad ───────────────────────────────────────────
   Etiquetas solo para lectores de pantalla (SEO/a11y) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Botón flotante WhatsApp · FAB circular gemelo del de Emilia ──
   Mismo tamaño/forma/sombra/animación que #em-fab (emilia-widget.js),
   en verde WhatsApp. Apilado ENCIMA de Emilia, misma esquina derecha. */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 102px; /* 24 (Emilia) + 64 (alto Emilia) + 14 gap */
  z-index: 9997; /* justo debajo del em-fab (9998) */
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1aa554);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  animation: waAgentPulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float:active { transform: scale(0.96); }
.whatsapp-float:focus-visible { outline: 2px solid #1aa554; outline-offset: 4px; }
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float span { /* etiqueta redundante: FAB es solo ícono (aria-label en el <a>) */
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@keyframes waAgentPulse {
  0%   { box-shadow: 0 8px 32px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 8px 32px rgba(37,211,102,0.4), 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ── Industrias · cards (home + página índice) ─────────────── */
.ind-card {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 22px 40px;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.ind-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -18px rgba(15,23,42,0.22);
  border-color: rgba(0,113,227,0.35);
}
.ind-card-title {
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0a0a0c;
  margin-bottom: 6px;
}
.ind-card-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: #6b7280;
}
.ind-card-arrow {
  position: absolute;
  right: 20px;
  bottom: 16px;
  font-size: 18px;
  color: #0071e3;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.ind-card:hover .ind-card-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   LANDINGS DE INDUSTRIA (Fase 2/3)
   ============================================================ */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

/* Breadcrumbs */
.breadcrumbs { font-size: 12.5px; color: #86868b; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; list-style: none; padding: 0; margin: 0; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li + li::before { content: '/'; color: #c7c7cc; }
.breadcrumbs a { color: #0071e3; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: #6b7280; }

/* Trust bar */
.trust-bar { border-top: 1px solid #ececed; border-bottom: 1px solid #ececed; background: #fafbfc; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; padding: 22px 24px; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { text-align: center; }
.trust-item strong { display: block; font-size: 14.5px; font-weight: 600; color: #0a0a0c; letter-spacing: -0.01em; }
.trust-item span { display: block; font-size: 12px; color: #86868b; margin-top: 2px; }

/* Pain / Solution / Benefit cards */
.feat-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feat-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.feat-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 22px; }
.feat-card.pain { border-left: 3px solid #ef4444; }
.feat-card.sol { border-left: 3px solid #0071e3; }
.feat-card h3 { font-size: 16px; font-weight: 600; color: #0a0a0c; margin-bottom: 6px; letter-spacing: -0.01em; }
.feat-card p { font-size: 13.5px; line-height: 1.55; color: #6b7280; }
.benef-card { background: linear-gradient(135deg, #f8fafc, #f1f5f9); border: 1px solid #e5e7eb; border-radius: 16px; padding: 22px; }
.benef-card h3 { font-size: 15.5px; font-weight: 600; color: #0a0a0c; margin-bottom: 6px; }
.benef-card p { font-size: 13px; line-height: 1.5; color: #6b7280; }

/* Casos list */
.casos-list { display: grid; grid-template-columns: 1fr; gap: 10px; max-width: 820px; }
@media (min-width: 768px) { .casos-list { grid-template-columns: repeat(2, 1fr); } }
.casos-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: #374151; line-height: 1.5; }
.casos-list li svg { flex-shrink: 0; width: 18px; height: 18px; color: #0071e3; margin-top: 2px; }

/* FAQ */
.faq-item { border: 1px solid #e5e7eb; border-radius: 12px; margin-bottom: 10px; background: #fff; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 16px 18px; font-size: 15px; font-weight: 600; color: #0a0a0c; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; color: #0071e3; font-weight: 400; transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 18px 16px; font-size: 14px; line-height: 1.6; color: #6b7280; }

/* Cotización form */
.if-field { margin-bottom: 14px; }
.if-field label { display: block; font-size: 12.5px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.if-field input, .if-field select { width: 100%; padding: 11px 14px; border: 1px solid #e5e7eb; border-radius: 10px; font-size: 14px; background: #fff; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.if-field input:focus, .if-field select:focus { outline: none; border-color: #0071e3; box-shadow: 0 0 0 3px rgba(0,113,227,0.1); }

.if-field input.if-invalid, .if-field select.if-invalid { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.12); }
