/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f5f5f7;
  color: #1d1d1f;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --red: #bf0000;
  --red-dark: #8a0000;
  --red-light: #ffeaea;
  --white: #ffffff;
  --off-white: #f5f5f7;
  --gray-100: #f2f2f7;
  --gray-200: #e5e5ea;
  --gray-300: #d2d2d7;
  --gray-400: #aeaeb2;
  --gray-500: #8e8e93;
  --gray-600: #6e6e73;
  --gray-700: #3a3a3c;
  --gray-800: #2c2c2e;
  --black: #1d1d1f;
  --nav-h: 52px;
  --subnav-h: 52px;
  --ticker-h: 38px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 40px rgba(0,0,0,0.12);
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-300);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--black);
}
.logo-red { color: var(--red); }
.logo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  flex: 1;
}
.nav-links a {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
.nav-cta {
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--red-dark); transform: scale(1.02); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  padding: 16px 24px 24px;
  gap: 4px;
}
.nav-mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-cta {
  margin-top: 12px;
  background: var(--red) !important;
  color: #fff !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 12px !important;
  border-bottom: none !important;
  font-weight: 700 !important;
}
.nav-mobile.open { display: flex; }

/* ===== SUBNAV ===== */
.subnav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: var(--subnav-h);
  overflow-x: auto;
}
.subnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 28px;
  color: var(--gray-600);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
  border-right: 1px solid var(--gray-200);
  height: 100%;
  justify-content: center;
  white-space: nowrap;
}
.subnav-item:last-child { border-right: none; }
.subnav-item:hover { color: var(--red); }
.subnav-item svg { transition: stroke 0.2s; }
.subnav-item:hover svg { stroke: var(--red); }

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--red);
  height: var(--ticker-h);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-track { white-space: nowrap; overflow: hidden; width: 100%; }
.ticker-inner {
  display: inline-block;
  animation: ticker-move 35s linear infinite;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
  padding: 0 16px;
}
@keyframes ticker-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero {
  background: var(--white);
  padding: 80px 24px 72px;
  text-align: center;
}
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(52px, 8vw, 80px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 20px;
}
.red { color: var(--red); }
.hero-sub {
  font-size: 20px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 36px;
  letter-spacing: -0.2px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(191,0,0,0.25);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(191,0,0,0.35); }
.btn-secondary {
  background: var(--gray-100);
  color: var(--black);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
}
.btn-secondary:hover { background: var(--gray-200); transform: translateY(-1px); }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--gray-200);
  padding-top: 40px;
}
.stat { flex: 1; padding: 0 24px; }
.stat-num {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  color: var(--red);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--gray-600); font-weight: 500; }
.stat-divider { width: 1px; height: 56px; background: var(--gray-200); flex-shrink: 0; }

/* ===== MAIN GRID ===== */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--off-white);
  margin-top: 2px;
}
.card {
  background: var(--white);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.card-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.card-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 10px;
}
.card-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 16px;
}
.card-link {
  font-size: 16px;
  color: var(--red);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 28px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 8px; }

/* FICHA */
.ficha {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: auto;
}
.ficha-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.ficha-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red-light);
  border: 2.5px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--red);
  flex-shrink: 0;
  font-style: normal;
  overflow: hidden;
}
.ficha-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ficha-name { font-size: 17px; font-weight: 700; color: var(--black); }
.ficha-loc { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.ficha-badge {
  margin-left: auto;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}
.ficha-rows { display: flex; flex-direction: column; gap: 0; }
.ficha-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
}
.ficha-label { color: var(--gray-500); }
.ficha-val { font-weight: 600; color: var(--black); }
.ficha-val.red { color: var(--red); }

/* SEARCH */
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-box:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(191,0,0,0.08);
}
.search-box input {
  border: none;
  background: none;
  outline: none;
  font-size: 15px;
  color: var(--black);
  width: 100%;
}
.search-box input::placeholder { color: var(--gray-400); }
.deudor-list { display: flex; flex-direction: column; margin-bottom: 20px; }
.deudor-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: background 0.15s;
  border-radius: 8px;
  padding: 10px 8px;
  margin: 0 -8px;
}
.deudor-item:hover { background: var(--off-white); }
.deudor-avatar-sm {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  flex-shrink: 0;
  overflow: hidden;
}
.deudor-avatar-sm img { width: 100%; height: 100%; object-fit: cover; }
.deudor-info { flex: 1; min-width: 0; }
.deudor-name-sm { font-size: 14px; font-weight: 700; color: var(--black); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.deudor-empresa-sm { font-size: 12px; color: var(--gray-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.deudor-monto-sm { font-size: 14px; font-weight: 800; color: var(--red); flex-shrink: 0; }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  min-width: 36px;
  letter-spacing: -1px;
}
.step-title { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.step-desc { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* BAR CHART */
.bar-chart { display: flex; flex-direction: column; gap: 14px; margin: 16px 0 24px; }
.bar-item { display: flex; align-items: center; gap: 12px; }
.bar-label { font-size: 13px; color: var(--gray-600); font-weight: 500; min-width: 80px; }
.bar-track { flex: 1; height: 8px; background: var(--gray-100); border-radius: 100px; overflow: hidden; }
.bar-fill {
  height: 100%;
  background: var(--red);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 10px;
  color: transparent;
  transition: width 1s ease-out;
}
.stat-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-pill {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.pill-num { font-size: 28px; font-weight: 800; color: var(--red); letter-spacing: -1px; }
.pill-label { font-size: 12px; color: var(--gray-600); margin-top: 4px; line-height: 1.4; }

/* ===== FULL REGISTRY ===== */
.full-registry {
  background: var(--white);
  padding: 64px 24px;
  margin-top: 2px;
}
.registry-header {
  max-width: 1200px;
  margin: 0 auto 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--black);
  line-height: 1.05;
}
.section-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-600);
  margin-top: 10px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.filter-row { display: flex; gap: 12px; flex-wrap: wrap; }
.filter-select {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--black);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e6e73' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
  transition: border-color 0.2s;
}
.filter-select:focus { border-color: var(--red); }
.registry-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.reg-card {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: 1px solid var(--gray-200);
}
.reg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.reg-card-top {
  background: var(--white);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.reg-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--red-light);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--red);
  flex-shrink: 0;
  overflow: hidden;
}
.reg-avatar img { width: 100%; height: 100%; object-fit: cover; }
.reg-info { flex: 1; min-width: 0; }
.reg-name { font-size: 16px; font-weight: 700; color: var(--black); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.reg-empresa { font-size: 12px; color: var(--gray-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.reg-status {
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}
.reg-card-body { padding: 16px 20px; }
.reg-monto { font-size: 26px; font-weight: 800; color: var(--red); letter-spacing: -0.5px; margin-bottom: 12px; }
.reg-details { display: flex; flex-direction: column; gap: 6px; }
.reg-detail { display: flex; justify-content: space-between; font-size: 12px; }
.reg-detail-label { color: var(--gray-500); }
.reg-detail-val { font-weight: 600; color: var(--black); }
.reg-card-foot {
  padding: 12px 20px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reg-exp { font-size: 11px; color: var(--gray-400); letter-spacing: 0.3px; }
.reg-cat {
  background: var(--red-light);
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ===== EMPRESAS ===== */
.empresas-section {
  background: var(--off-white);
  padding: 64px 24px;
  margin-top: 2px;
}
.empresas-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.empresas-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}
.empresa-logo {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.empresa-logo:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(191,0,0,0.1);
}

/* ===== CTA ===== */
.cta-section {
  background: #1d1d1f;
  padding: 80px 24px;
  margin-top: 2px;
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cta-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #f5f5f7;
  line-height: 1.05;
  margin: 12px 0 16px;
}
.cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: #a1a1a6;
  line-height: 1.6;
  margin-bottom: 28px;
}
.cta-checks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cta-checks li { font-size: 15px; color: #d1d1d6; font-weight: 500; }
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
}
.form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-600);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 15px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(191,0,0,0.08);
}
.form-group textarea { height: 90px; resize: vertical; }
.form-btn {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s, transform 0.15s;
}
.form-btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.form-btn:active { transform: scale(0.98); }
.form-note {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* SUCCESS STATE */
.form-success {
  text-align: center;
  padding: 32px 16px;
}
.form-success-icon {
  width: 64px; height: 64px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}
.form-success h3 { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--gray-600); }

/* ===== FOOTER ===== */
.footer {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
  padding: 56px 24px 32px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; margin-bottom: 48px; }
.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.footer-logo span { color: var(--red); }
.footer-tagline { font-size: 13px; color: var(--gray-600); margin-bottom: 20px; line-height: 1.5; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.social-btn {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--gray-600); transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 12px; color: var(--gray-400); }

/* ===== NO RESULTS ===== */
.no-results { text-align: center; padding: 24px; color: var(--gray-500); font-size: 14px; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1d1d1f;
  color: #fff;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s;
  z-index: 999;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .main-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .subnav-item { padding: 0 16px; font-size: 10px; }
  .hero { padding: 56px 20px 48px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .card { padding: 36px 24px; }
  .registry-header { flex-direction: column; align-items: flex-start; }
  .footer-links { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .btn-primary, .btn-secondary { text-align: center; }
  .card-title { font-size: 26px; }
}

.bar-count { font-size: 12px; font-weight: 700; color: #bf0000; min-width: 20px; text-align: right; }
.no-results { text-align:center; padding:20px; color:#6e6e73; font-size:14px; }
.toast { position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(20px); background:#1d1d1f; color:#fff; padding:14px 24px; border-radius:100px; font-size:14px; font-weight:600; opacity:0; transition:all 0.3s; z-index:999; white-space:nowrap; }
.toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* ===== WHATSAPP FLOTANTE ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.2);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,.55), 0 4px 16px rgba(0,0,0,.2);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(-8px);
  pointer-events: auto;
}
.wa-float svg {
  flex-shrink: 0;
}
.wa-tooltip {
  position: absolute;
  right: 72px;
  background: #1d1d1f;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(4px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
  font-family: 'Manrope', sans-serif;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #1d1d1f;
}
/* Pulso animado */
.wa-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
