.section-kicker{
  display:inline-block;
  font-size:.75rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: rgba(231,238,252,.65);
  margin-bottom:.5rem;
}

.trustbar{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:.75rem;
}
@media (min-width: 992px){
  .trustbar{ grid-template-columns: repeat(4, minmax(0,1fr)); }
}

.trust-item{
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  padding:.75rem;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
.trust-item i{
  font-size: 1.2rem;
  color: rgba(231,238,252,.9);
}

.mini-card, .plan-card, .step-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
}

.plan-popular{
  box-shadow: 0 20px 60px rgba(79,124,255,.14);
}

.step-num{
  width: 30px; height: 30px;
  border-radius: 10px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(79,124,255,.35), rgba(110,231,255,.25));
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: .5rem;
}

/* =======================
   FOOTER FINMIND
======================= */
.footer-finmind{
  background: linear-gradient(
    180deg,
    rgba(11,18,32,0.85),
    rgba(8,12,22,0.95)
  );
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 6rem;
}

.footer-title{
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(231,238,252,.85);
  margin-bottom: 1rem;
}

.footer-links,
.footer-contact{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li{
  margin-bottom: .5rem;
}

.footer-links a{
  color: rgba(231,238,252,.65);
  text-decoration: none;
  font-size: .9rem;
}

.footer-links a:hover{
  color: #ffffff;
  text-decoration: underline;
}

.footer-contact li{
  font-size: .9rem;
  color: rgba(231,238,252,.65);
  margin-bottom: .4rem;
}

.footer-contact span{
  color: rgba(231,238,252,.9);
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
  padding: .9rem 0;
  font-size: .8rem;
  color: rgba(231,238,252,.6);
}

/* =======================
   TEMA GLOBAL FINMIND
======================= */
:root{
  --bg: #0b1220;
  --bg2:#070b14;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.035);
  --border: rgba(255,255,255,.10);
  --text: #e7eefc;
  --muted: rgba(231,238,252,.66);
  --muted2: rgba(231,238,252,.50);
  --primary: #4f7cff;
  --primary2: #6ee7ff;
}

html, body{
  background: radial-gradient(1200px 600px at 20% 0%, rgba(79,124,255,.22), transparent 60%),
              radial-gradient(900px 500px at 80% 20%, rgba(110,231,255,.18), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
}

a{ color: rgba(231,238,252,.78); }
a:hover{ color:#fff; }

/* Bootstrap overrides para que no salgan azules/negros raros */
.text-muted{ color: var(--muted)!important; }
.border-soft{ border-color: var(--border)!important; }
.navbar .nav-link{ color: rgba(231,238,252,.72); }
.navbar .nav-link:hover{ color:#fff; }
.navbar .nav-link.active{ color:#fff; }

/* Cards (glass) */
.card-glass{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 14px 60px rgba(0,0,0,.30);
}

/* Badges */
.badge-trust{
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: rgba(231,238,252,.90);
  display: center;
}

/* Botón CTA */
.btn-cta{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border: 0;
  box-shadow: 0 10px 30px rgba(79,124,255,.25);
}
.btn-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(79,124,255,.35);
}
.btn{ transition: transform .15s ease, box-shadow .15s ease; }

/* Brand dot */
.brand-dot{
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 0 18px rgba(79,124,255,.55);
}

/* Navbar glass */
.nav-glass{
  backdrop-filter: blur(12px);
  background: rgba(11,18,32,.65);
  border-bottom: 1px solid var(--border);
}

/* Trust bar */
.trustbar{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:.75rem;
}
@media (min-width: 992px){
  .trustbar{ grid-template-columns: repeat(4, minmax(0,1fr)); }
}
.trust-item{
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  padding:.85rem;
  border-radius: 16px;
  background: var(--panel2);
  border: 1px solid var(--border);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.trust-item:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(110,231,255,.22);
}
.trust-item i{
  font-size: 1.25rem;
  color: rgba(231,238,252,.92);
}

/* Sección kicker */
.section-kicker{
  display:inline-block;
  font-size:.75rem;
  letter-spacing:.10em;
  text-transform:uppercase;
  color: var(--muted2);
  margin-bottom:.5rem;
}

/* Mini cards */
.mini-card, .plan-card, .step-card{
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.mini-card:hover, .plan-card:hover, .step-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(79,124,255,.22);
}
.plan-popular{
  box-shadow: 0 20px 70px rgba(79,124,255,.18);
}

/* Step number */
.step-num{
  width: 32px; height: 32px;
  border-radius: 10px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(79,124,255,.35), rgba(110,231,255,.25));
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: .55rem;
}

/* =======================
   FOOTER PREMIUM FINMIND
======================= */
.footer-finmind{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.35)),
              radial-gradient(900px 420px at 20% 0%, rgba(79,124,255,.18), transparent 60%),
              radial-gradient(800px 420px at 80% 10%, rgba(110,231,255,.12), transparent 60%),
              rgba(6,9,16,.92);
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 6rem;
}

.footer-cta{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 1.25rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1rem;
}
.footer-cta p{ margin:0; color: var(--muted); }
.footer-cta h5{ margin:0; }

.footer-title{
  font-size: .85rem;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(231,238,252,.88);
  margin-bottom: 1rem;
}

.footer-links, .footer-contact{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li{ margin-bottom: .55rem; }
.footer-links a{
  color: rgba(231,238,252,.70);
  text-decoration: none;
  font-size: .92rem;
}
.footer-links a:hover{
  color: #fff;
  text-decoration: underline;
}

.footer-contact li{
  display:flex;
  gap:.6rem;
  align-items:flex-start;
  font-size: .92rem;
  color: rgba(231,238,252,.70);
  margin-bottom: .55rem;
}
.footer-contact i{
  margin-top: .1rem;
  color: rgba(110,231,255,.85);
}
.footer-contact span{ color: rgba(231,238,252,.92); }

.footer-social{
  display:flex;
  gap:.5rem;
  margin-top: .75rem;
}
.footer-social a{
  width: 38px; height: 38px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(231,238,252,.85);
  text-decoration:none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.footer-social a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.08);
  border-color: rgba(110,231,255,.25);
  color:#fff;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
  padding: .95rem 0;
  font-size: .82rem;
  color: rgba(231,238,252,.60);
}

/* Evitar que textos se “pierdan” en fondos claros */
.bg-white, .bg-light{
  color: #0b1220 !important;
}

/* ========= HERO MEDIA (imagen) ========= */
/* HERO MEDIA (imagen) */
.hero-media{
  margin-top: 1rem;
}

.hero-media-inner{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;

  /* Fondo premium (para que NO se vea un “cuadro” raro) */
  background:
    radial-gradient(900px 380px at 20% 10%, rgba(56,189,248,.22), transparent 60%),
    radial-gradient(700px 320px at 90% 20%, rgba(99,102,241,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));

  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 70px rgba(0,0,0,.45) inset;
}

.hero-media-inner::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(600px 220px at 50% 70%, rgba(0,0,0,.35), transparent 60%);
  pointer-events:none;
}

/* El logo: centrado, con tamaño controlado */
.hero-img{
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(82%, 520px);
  height: auto;
  max-height: 240px;
  object-fit: contain;

  /* “Saca” el logo del fondo y lo hace pro */
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.55));
  transform: translateY(-6px);
}

/* Responsive */
@media (max-width: 991.98px){
  .hero-media-inner{ min-height: 280px; }
  .hero-img{ max-height: 210px; width: min(88%, 520px); }
}

/* ========= PRECIO (placeholder USD) ========= */
.precio-usd{
  display:flex;
  align-items:flex-end;
  gap:.25rem;
  line-height: 1;
}
.precio-simbolo{
  font-weight: 800;
  font-size: 1.05rem;
  color: rgba(231,238,252,.9);
}
.precio-valor{
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: .02em;
  background: linear-gradient(135deg, rgba(79,124,255,.95), rgba(110,231,255,.85));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.precio-moneda{
  font-size: .85rem;
  font-weight: 700;
  color: rgba(231,238,252,.70);
  margin-bottom: .15rem;
}

/* ========= BULLETS PLAN ========= */
.plan-bullets{
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(231,238,252,.72);
  font-size: .92rem;
}
.plan-bullets li{
  display:flex;
  align-items:flex-start;
  gap:.5rem;
  margin-bottom: .5rem;
}
.plan-bullets i{
  margin-top: .15rem;
  color: rgba(110,231,255,.90);
}

.plan-card .badge-recomendado{
  position: absolute;
  top: 14px;
  right: 14px;

  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;

  padding: .35rem .6rem;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    rgba(79,124,255,.95),
    rgba(110,231,255,.9)
  );
  color: #0b1220;

  box-shadow: 0 6px 18px rgba(79,124,255,.45);
  z-index: 2;
}


/* ============ PROGRAMAS: ESTILO DIFERENTE SIN CAMBIAR PALETA ============ */

.mini-kpi{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: .85rem;
  text-align:center;
}
.kpi-num{
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: .25rem;
}
.kpi-label{
  font-size: .75rem;
  color: rgba(231,238,252,.65);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Pills */
.nav-pills-finmind .nav-link{
  color: rgba(231,238,252,.75);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  padding: .55rem 1rem;
  font-weight: 700;
}
.nav-pills-finmind .nav-link:hover{
  color:#fff;
  border-color: rgba(110,231,255,.22);
  background: rgba(255,255,255,.06);
}
.nav-pills-finmind .nav-link.active{
  color: #0b1220;
  border-color: transparent;
  background: linear-gradient(135deg, rgba(79,124,255,.95), rgba(110,231,255,.90));
}
.pill-dot{
  display:inline-block;
  width:8px;height:8px;
  border-radius:999px;
  margin-left:.35rem;
  background: rgba(110,231,255,.85);
  box-shadow: 0 0 16px rgba(110,231,255,.55);
}

/* Plan hero (layout distinto a inicio) */
.plan-hero{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(520px 260px at 20% 10%, rgba(79,124,255,.18), transparent 60%),
    radial-gradient(480px 260px at 80% 20%, rgba(110,231,255,.12), transparent 60%),
    rgba(255,255,255,.035);
  box-shadow: 0 14px 60px rgba(0,0,0,.28);
}
.plan-hero-pro{
  border-color: rgba(110,231,255,.22);
  box-shadow: 0 18px 70px rgba(79,124,255,.22);
}

/* Tabla */
.table-finmind{
  --bs-table-bg: rgba(255,255,255,.02);
  --bs-table-border-color: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  overflow: hidden;
}
.table-finmind th, .table-finmind td{
  color: rgba(231,238,252,.85);
}
.table-finmind thead th{
  color: rgba(231,238,252,.95);
}


/* ===== SEGURIDAD: COMPONENTES ===== */
.security-callout{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 1.15rem 1.25rem;
}

.callout-ico{
  width: 38px; height: 38px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(110,231,255,.10);
  border: 1px solid rgba(110,231,255,.18);
  color: rgba(110,231,255,.95);
  flex: 0 0 auto;
}

.security-kpis{
  display:flex;
  flex-direction: column;
  gap: .85rem;
}
.security-kpi{
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  padding:.75rem;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
}
.kpi-ico{
  width: 36px; height: 36px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(79,124,255,.12);
  border: 1px solid rgba(79,124,255,.18);
  color: rgba(231,238,252,.92);
  flex: 0 0 auto;
}

.checklist{
  list-style:none;
  padding:0;
  margin:0;
}
.checklist li{
  display:flex;
  gap:.55rem;
  align-items:flex-start;
  margin-bottom:.55rem;
  color: rgba(231,238,252,.78);
  font-size: .95rem;
}
.checklist i{
  margin-top:.15rem;
  color: rgba(110,231,255,.90);
}
.checklist-red i{
  color: rgba(255,120,120,.95);
}

.step-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 22px; height: 22px;
  border-radius: 8px;
  font-weight: 900;
  font-size: .78rem;
  margin-right: .4rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(231,238,252,.9);
}

.chat-box{
  height: 420px;
  overflow:auto;
  padding: 1rem;
  background: rgba(255,255,255,.02);
}
.chat-msg{ display:flex; margin-bottom:.75rem; }
.chat-msg.me{ justify-content:flex-end; }
.chat-msg.them{ justify-content:flex-start; }
.chat-msg.sys{ justify-content:center; }

.bubble{
  max-width: 78%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: .65rem .8rem;
}
.chat-msg.me .bubble{
  background: rgba(79,124,255,.18);
  border-color: rgba(79,124,255,.22);
}
.chat-msg.sys .bubble{
  background: rgba(110,231,255,.08);
  border-color: rgba(110,231,255,.16);
  max-width: 90%;
}
.meta{ font-size:.72rem; color: rgba(231,238,252,.65); margin-bottom:.25rem; }
.text{ color: rgba(231,238,252,.92); line-height:1.35; font-size:.95rem; }

/* =========================
   EMPRESA (page tweaks)
   ========================= */

/* Hero de Empresa: un poco más sobrio y “corporativo” */
.page-empresa .card-glass{
  position: relative;
  overflow: hidden;
}

.page-empresa .card-glass::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 520px at 18% 15%, rgba(242,210,122,.12), transparent 62%),
    radial-gradient(820px 520px at 88% 22%, rgba(199,154,47,.10), transparent 60%);
  opacity:.9;
  pointer-events:none;
}

.page-empresa .card-glass > *{
  position: relative;
  z-index: 1;
}

/* Títulos más “serios” (sin parecer Home) */
.page-empresa h1.display-6{
  letter-spacing: -.02em;
}

.page-empresa .section-kicker{
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: .9;
}

/* Mini-cards más compactas y con ícono alineado */
.page-empresa .mini-card{
  border-radius: 16px;
  border: 1px solid var(--stroke2);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.page-empresa .callout-ico{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--stroke2);
  background: rgba(242,210,122,.08);
  color: var(--gold);
  flex: 0 0 42px;
}

/* Badges de misión/visión más bonitos */
.page-empresa .badge-trust{
  background: rgba(242,210,122,.10);
  border: 1px solid rgba(242,210,122,.22);
  color: rgba(255,255,255,.92);
}

/* “Step cards” en empresa (distintas a las de home) */
.page-empresa .step-card{
  border-radius: 18px;
  border: 1px solid var(--stroke2);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.page-empresa .step-card:hover{
  transform: translateY(-2px);
  border-color: rgba(242,210,122,.26);
  background: rgba(242,210,122,.05);
}

.page-empresa .step-num{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(242,210,122,.22);
  background: rgba(242,210,122,.10);
  color: var(--gold);
  margin-bottom: 10px;
}

/* Separador suave */
.page-empresa hr.border-soft{
  opacity: .55;
}

/* Mejor lectura de párrafos largos */
.page-empresa p.text-muted{
  line-height: 1.75;
}

/* Responsive tweaks */
@media (max-width: 991px){
  .page-empresa .card-glass::before{ opacity: .75; }
}
