/*
  industrias.css — Estilos compartidos para páginas de industria
  Zona Digital ERP · spzonadigital.com
  Paleta: --azul #1D3A6E, --azul2 #2563EB, --verde #10B981
  Fuentes: Poppins / Inter (Google Fonts, cargadas en cada HTML)
*/

/* ===== VARIABLES Y RESET ===== */
:root {
  --azul: #1D3A6E;
  --azul2: #2563EB;
  --azul-claro: #EAF1FF;
  --verde: #10B981;
  --ambar: #F59E0B;
  --tinta: #0F172A;
  --gris: #475569;
  --gris2: #64748B;
  --linea: #E2E8F0;
  --fondo: #F8FAFC;
  --blanco: #fff;
  --radio: 16px;
  --sombra: 0 10px 30px -12px rgba(15, 23, 42, .18);
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Inter', system-ui, Arial, sans-serif;
  color: var(--tinta);
  background: var(--blanco);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
h1, h2, h3, h4, .logo { font-family: 'Poppins', sans-serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ===== UTILIDADES ===== */
.cont { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.centro { text-align: center; }
.seccion { padding: 84px 0; }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--azul2);
  background: var(--azul-claro);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.titulo { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--tinta); }
.sub { color: var(--gris); font-size: 18px; max-width: 680px; margin: 14px auto 0; }

/* ===== BOTONES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 15px;
  transition: .2s;
  text-align: center;
}
.btn-primario {
  background: linear-gradient(135deg, var(--azul2), var(--azul));
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(37, 99, 235, .5);
}
.btn-primario:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -6px rgba(37, 99, 235, .6); }
.btn-claro { background: #fff; color: var(--azul); border: 2px solid var(--linea); }
.btn-claro:hover { border-color: var(--azul2); color: var(--azul2); }
.btn-blanco { background: #fff; color: var(--azul); }

/* ===== TARJETA BASE ===== */
.card {
  background: #fff;
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  padding: 28px;
  transition: .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sombra); border-color: #cdddff; }
.card .ic {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--azul-claro);
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 16px;
}
.card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--gris); font-size: 15px; }

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linea);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--azul);
}
.logo .marca {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--azul2), var(--azul));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  flex: 0 0 auto;
}
.logo-img { height: 56px; width: auto; display: block; max-width: 230px; object-fit: contain; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--gris); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--azul2); }
.menu-btn { display: none; background: none; border: 0; font-size: 26px; cursor: pointer; color: var(--azul); }

/* ===== HERO DE INDUSTRIA ===== */
.hero-ind {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 80% -10%, #dbeafe 0, transparent 55%),
              linear-gradient(180deg, #fff 0, var(--fondo) 100%);
  padding: 80px 0 90px;
}
.hero-ind .eyebrow { background: var(--azul-claro); color: var(--azul2); }
.hero-ind h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero-ind h1 .grad {
  background: linear-gradient(135deg, var(--azul2), var(--verde));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-ind p.lead { font-size: 19px; color: var(--gris); max-width: 620px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-mini {
  display: flex;
  gap: 22px;
  margin-top: 28px;
  flex-wrap: wrap;
  color: var(--gris2);
  font-size: 14px;
  font-weight: 600;
}
.hero-mini span { display: flex; align-items: center; gap: 7px; }

/* ===== SECCIÓN DOLORES ===== */
.dolores { background: #fff; }
.dolores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 44px;
}
.dolor-card {
  background: var(--fondo);
  border: 1px solid var(--linea);
  border-left: 4px solid var(--ambar);
  border-radius: 12px;
  padding: 22px;
}
.dolor-card .ic { font-size: 26px; margin-bottom: 10px; }
.dolor-card h4 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.dolor-card p { color: var(--gris); font-size: 14.5px; }

/* ===== SECCIÓN MÓDULOS DESTACADOS ===== */
.mods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 46px;
}

/* ===== FRANJA "TAMBIÉN INCLUYE" ===== */
.tambien {
  background: linear-gradient(135deg, #0b1f44, var(--azul));
  color: #fff;
  padding: 72px 0;
}
.tambien .eyebrow { background: rgba(255, 255, 255, .15); color: #fff; }
.tambien h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); }
.tambien p.s { color: #cbd5e1; font-size: 17px; max-width: 620px; margin: 12px auto 0; }
.tambien-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 38px;
}
.tambien-item {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.tambien-item .ic { font-size: 24px; flex: 0 0 auto; }
.tambien-item div .t { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: #fff; }
.tambien-item div .d { font-size: 13.5px; color: #cbd5e1; margin-top: 3px; }

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--fondo);
  padding: 80px 0;
  text-align: center;
}
.cta-final h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--tinta); margin-bottom: 14px; }
.cta-final p { color: var(--gris); font-size: 18px; max-width: 580px; margin: 0 auto 30px; }

/* ===== FOOTER ===== */
footer { background: #0b1f44; color: #cbd5e1; padding: 54px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
footer .logo { color: #fff; }
footer p { font-size: 14px; margin-top: 14px; max-width: 320px; }
footer h5 { color: #fff; font-family: 'Poppins', sans-serif; font-size: 15px; margin-bottom: 14px; }
footer ul { list-style: none; display: grid; gap: 9px; }
footer ul a { color: #cbd5e1; font-size: 14px; }
footer ul a:hover { color: #fff; }
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 36px;
  padding-top: 22px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

/* ===== WHATSAPP FLOTANTE ===== */
.wa-wrap { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa { width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 8px 24px -4px rgba(37, 211, 102, .6); font-size: 32px; transition: .2s; border: 0; cursor: pointer; align-self: flex-end; }
.wa:hover { transform: scale(1.08); }
.wa-menu { display: none; flex-direction: column; gap: 8px; }
.wa-menu.open { display: flex; }
.wa-menu a { background: #fff; border: 1px solid var(--linea); box-shadow: var(--sombra); border-radius: 12px; padding: 11px 16px; font-weight: 600; font-size: 14px; color: var(--azul); white-space: nowrap; }
.wa-menu a:hover { border-color: #25D366; color: #128C7E; }

/* ===== CHATBOT IA ===== */
.chat-launch {
  position: fixed; left: 22px; bottom: 22px; z-index: 60;
  display: flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--azul2), var(--azul));
  color: #fff; border: 0; cursor: pointer;
  border-radius: 999px; padding: 13px 20px 13px 16px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
  box-shadow: 0 10px 26px -8px rgba(37, 99, 235, .6); transition: .2s;
}
.chat-launch:hover { transform: translateY(-2px); }
.chat-launch .dot { width: 9px; height: 9px; border-radius: 50%; background: #34D399; box-shadow: 0 0 0 3px rgba(52, 211, 153, .35); }
.chat-panel {
  position: fixed; left: 22px; bottom: 22px; z-index: 61;
  width: 372px; max-width: calc(100vw - 32px);
  height: 560px; max-height: calc(100vh - 40px);
  background: #fff; border-radius: 20px;
  box-shadow: 0 24px 60px -16px rgba(15, 23, 42, .4);
  display: none; flex-direction: column; overflow: hidden;
  border: 1px solid var(--linea);
}
.chat-panel.open { display: flex; }
.chat-head {
  background: linear-gradient(135deg, var(--azul), var(--azul2));
  color: #fff; padding: 15px 18px; display: flex; align-items: center; gap: 12px;
}
.chat-head .av { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .18); display: grid; place-items: center; font-size: 20px; flex: 0 0 auto; }
.chat-head .tit { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.2; }
.chat-head .st { font-size: 12px; opacity: .9; display: flex; align-items: center; gap: 6px; }
.chat-head .st .dot { width: 8px; height: 8px; border-radius: 50%; background: #34D399; }
.chat-head .x { margin-left: auto; background: none; border: 0; color: #fff; font-size: 24px; cursor: pointer; opacity: .85; line-height: 1; }
.chat-head .x:hover { opacity: 1; }
.chat-msgs { flex: 1; overflow-y: auto; padding: 18px; background: var(--fondo); display: flex; flex-direction: column; gap: 11px; }
.msg { max-width: 86%; padding: 11px 14px; border-radius: 14px; font-size: 14px; line-height: 1.55; white-space: pre-wrap; word-wrap: break-word; }
.msg.bot { background: #fff; border: 1px solid var(--linea); border-bottom-left-radius: 4px; align-self: flex-start; color: var(--tinta); }
.msg.user { background: var(--azul2); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 16px 12px; background: var(--fondo); }
.chip { background: #fff; border: 1px solid var(--linea); color: var(--azul); font-size: 12.5px; font-weight: 600; padding: 7px 12px; border-radius: 999px; cursor: pointer; transition: .15s; }
.chip:hover { border-color: var(--azul2); background: var(--azul-claro); }
.chat-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--linea); background: #fff; }
.chat-input input { flex: 1; border: 1.5px solid var(--linea); border-radius: 999px; padding: 11px 16px; font-size: 14px; font-family: inherit; outline: none; min-width: 0; }
.chat-input input:focus { border-color: var(--azul2); }
.chat-input button { background: var(--azul2); border: 0; color: #fff; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; font-size: 17px; flex: 0 0 auto; }
.chat-input button:disabled { opacity: .5; cursor: default; }
.typing { align-self: flex-start; color: var(--gris2); font-size: 13px; font-style: italic; padding: 2px 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-ind { padding: 60px 0 70px; }
  .foot-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed; inset: 84px 0 auto 0; background: #fff;
    flex-direction: column; padding: 18px 22px; gap: 16px;
    border-bottom: 1px solid var(--linea); display: none;
    box-shadow: var(--sombra);
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: block; }
  .seccion { padding: 60px 0; }
  .tambien { padding: 60px 0; }
}
@media (max-width: 480px) {
  .chat-panel { left: 0; bottom: 0; width: 100%; height: 100vh; max-height: 100vh; border-radius: 0; }
  .chat-launch .txt { display: none; }
}

/* ============================================================
   AÑADIDO 2026-05-23 — Automatizaciones + Mockups del sistema
   Reutilizable por todas las páginas de industria.
   ============================================================ */

/* ===== SECCIÓN AUTOMATIZACIONES ===== */
.autos { background: linear-gradient(180deg, #fff 0, var(--fondo) 100%); }
.autos .eyebrow { background: #ECFDF5; color: #059669; }
.autos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 18px;
  margin-top: 46px;
}
.auto-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  padding: 26px 24px 22px;
  overflow: hidden;
  transition: .2s;
}
.auto-card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--azul2), var(--verde));
}
.auto-card:hover { transform: translateY(-4px); box-shadow: var(--sombra); border-color: #bbf7d0; }
.auto-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: #059669; background: #ECFDF5; border: 1px solid #A7F3D0;
  padding: 5px 11px; border-radius: 999px; margin-bottom: 14px;
}
.auto-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.auto-card p { color: var(--gris); font-size: 14.5px; }
.auto-flow {
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
  margin-top: 16px; font-size: 12px; font-weight: 600; color: var(--azul);
}
.auto-flow .step { background: var(--azul-claro); padding: 6px 11px; border-radius: 8px; white-space: nowrap; }
.auto-flow .arrow { color: var(--azul2); font-weight: 800; }
.auto-kpi {
  display: inline-block; margin-top: 14px;
  font-size: 12.5px; font-weight: 700; color: #059669;
  background: #ECFDF5; padding: 4px 10px; border-radius: 8px;
}

/* ===== SHOWCASE (texto + mockup lado a lado) ===== */
.showcase { background: #fff; }
.showcase + .showcase { padding-top: 0; }
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.showcase-row.rev .show-media { order: -1; }
.show-txt .eyebrow { margin-bottom: 14px; }
.show-txt h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 14px; }
.show-txt p { color: var(--gris); font-size: 16.5px; margin-bottom: 20px; }
.show-list { display: grid; gap: 12px; }
.show-list li { display: flex; align-items: flex-start; gap: 11px; list-style: none; font-size: 15px; color: var(--tinta); }
.show-list .ck {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 7px;
  background: #ECFDF5; color: #059669; display: grid; place-items: center; font-size: 13px; font-weight: 800;
}

/* ===== MOCKUP — MARCO NAVEGADOR (captura del sistema) ===== */
.mock-frame {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--linea);
  box-shadow: 0 30px 70px -24px rgba(15, 23, 42, .45);
  background: #fff;
}
.mock-bar { background: #0b1f44; padding: 11px 14px; display: flex; align-items: center; gap: 7px; }
.mock-bar .d { width: 11px; height: 11px; border-radius: 50%; }
.mock-bar .d.r { background: #ff5f57; }
.mock-bar .d.y { background: #febc2e; }
.mock-bar .d.g { background: #28c840; }
.mock-url {
  margin-left: 12px; flex: 1;
  background: rgba(255, 255, 255, .12); color: #cbd5e1;
  font-size: 12px; padding: 5px 13px; border-radius: 7px;
  font-family: 'Inter', monospace; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock-body { padding: 16px; background: var(--fondo); }

/* App-bar interna del mockup */
.mk-appbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mk-appbar .t { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; color: var(--tinta); }
.mk-appbar .pill { font-size: 11px; font-weight: 700; color: var(--azul2); background: var(--azul-claro); padding: 4px 10px; border-radius: 999px; }

/* Agenda semanal */
.ag-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.ag-day { font-size: 10.5px; font-weight: 700; color: var(--gris2); text-align: center; margin-bottom: 7px; text-transform: uppercase; letter-spacing: .03em; }
.ag-col { display: flex; flex-direction: column; gap: 6px; }
.ag-appt { border-radius: 8px; padding: 7px 8px; font-size: 10.5px; color: #fff; font-weight: 600; line-height: 1.3; box-shadow: 0 2px 6px -2px rgba(15,23,42,.3); }
.ag-appt .h { opacity: .85; font-weight: 700; font-size: 9.5px; display: block; }
.ag-appt.a1 { background: linear-gradient(135deg, #2563EB, #1D3A6E); }
.ag-appt.a2 { background: linear-gradient(135deg, #10B981, #059669); }
.ag-appt.a3 { background: linear-gradient(135deg, #F59E0B, #D97706); }
.ag-appt.a4 { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.ag-empty { background: #fff; border: 1px dashed var(--linea); border-radius: 8px; height: 30px; }

/* ===== MOCKUP — TELÉFONO (WhatsApp) ===== */
.mock-phone {
  width: 280px; max-width: 100%; margin: 0 auto;
  background: #0f172a; border-radius: 36px; padding: 11px;
  box-shadow: 0 30px 70px -20px rgba(15, 23, 42, .5);
}
.phone-screen { background: #ECE5DD; border-radius: 27px; overflow: hidden; }
.wa-top { background: #075E54; color: #fff; padding: 13px 15px; display: flex; align-items: center; gap: 11px; }
.wa-top .av { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.2); display: grid; place-items: center; font-size: 17px; }
.wa-top .nm { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; }
.wa-top .on { font-size: 11px; opacity: .85; }
.wa-body { padding: 14px 12px; display: flex; flex-direction: column; gap: 9px; min-height: 360px; background: #ECE5DD; }
.wa-msg { max-width: 84%; padding: 8px 11px; border-radius: 11px; font-size: 12.5px; line-height: 1.5; box-shadow: 0 1px 1px rgba(0,0,0,.1); }
.wa-in { background: #fff; align-self: flex-start; border-top-left-radius: 3px; color: var(--tinta); }
.wa-out { background: #DCF8C6; align-self: flex-end; border-top-right-radius: 3px; color: #1b3a1b; }
.wa-time { display: block; font-size: 9.5px; color: #75857a; text-align: right; margin-top: 3px; }
.wa-quick { display: flex; gap: 6px; flex-wrap: wrap; align-self: flex-end; margin-top: 2px; }
.wa-quick span { background: #fff; border: 1px solid #cfe8c0; color: #075E54; font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 999px; }

@media (max-width: 860px) {
  .showcase-row { grid-template-columns: 1fr; gap: 32px; }
  .showcase-row.rev .show-media { order: 0; }
}

/* ============================================================
   AÑADIDO 2026-05-23 (2) — Video demo + tarjetas de rubro (index)
   ============================================================ */

/* ===== VIDEO "MÍRALO EN ACCIÓN" ===== */
.video-demo {
  max-width: 960px;
  margin: 46px auto 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--linea);
  box-shadow: 0 44px 100px -34px rgba(15, 23, 42, .55);
  background: #0b1f44;
}
.video-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: #0b1f44; }
.video-bar .d { width: 12px; height: 12px; border-radius: 50%; }
.video-bar .d.r { background: #ff5f57; }
.video-bar .d.y { background: #febc2e; }
.video-bar .d.g { background: #28c840; }
.video-bar .u { margin-left: 12px; flex: 1; background: rgba(255,255,255,.12); color: #cbd5e1; font-size: 13px; padding: 5px 14px; border-radius: 7px; }
.video-demo video { display: block; width: 100%; height: auto; background: #05080F; }
.video-cap { text-align: center; color: var(--gris2); font-size: 14px; margin-top: 16px; }

/* sección hero con video al lado (páginas de rubro) */
.hero-video { margin-top: 36px; border-radius: 16px; overflow: hidden; border: 1px solid var(--linea); box-shadow: var(--sombra); }
.hero-video video { display: block; width: 100%; height: auto; background: #05080F; }

/* ===== TARJETAS DE RUBRO (sección de industrias en el index) ===== */
.rubros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 50px;
}
.rubro-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--linea);
  border-radius: 20px;
  padding: 30px 28px;
  overflow: hidden;
  transition: .22s;
  text-align: left;
}
.rubro-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--c1, var(--azul2)), var(--c2, var(--verde)));
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.rubro-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -22px rgba(15,23,42,.3); border-color: #cdddff; }
.rubro-card:hover::before { transform: scaleX(1); }
.rubro-ic {
  width: 64px; height: 64px; border-radius: 17px;
  display: grid; place-items: center; font-size: 32px; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--c1, var(--azul2)), var(--c2, var(--verde)));
  box-shadow: 0 10px 22px -8px var(--c1, var(--azul2));
}
.rubro-card h3 { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; color: var(--tinta); }
.rubro-card .desc { color: var(--gris); font-size: 15px; margin-bottom: 16px; }
.rubro-card ul { list-style: none; display: grid; gap: 9px; margin-bottom: 22px; }
.rubro-card ul li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--tinta); }
.rubro-card ul li::before { content: "✓"; color: var(--verde); font-weight: 800; flex: 0 0 auto; }
.rubro-card .go {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14.5px;
  color: var(--c1, var(--azul2)); transition: gap .18s;
}
.rubro-card:hover .go { gap: 14px; }
