:root{
  /* Base */
  --bg:#0B1220;
  --panel:#0E1730;
  --panel2:#0B1220;
  --stroke: rgba(255,255,255,.10);
  --text:#EAF1FF;
  --muted:#A7B4D6;

  /* Azul */
  --brand:#2563EB;
  --brand2:#60A5FA;

  /* Rojo (acento premium) */
  --accent:#EF4444;
  --accent2:#DC2626;

  /* Extras */
  --radius:18px;
  --shadow: 0 18px 70px rgba(0,0,0,.45);
  --shadow2: 0 12px 40px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 450px at 12% -6%, rgba(37,99,235,.35), transparent 55%),
    radial-gradient(900px 450px at 88% -8%, rgba(239,68,68,.22), transparent 60%),
    radial-gradient(900px 450px at 75% 10%, rgba(96,165,250,.18), transparent 55%),
    linear-gradient(180deg, #060A13, var(--bg));
}

/* Container */
.container{max-width:1180px;margin:0 auto;padding:0 18px}

/* ===== NAV ===== */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(16px);
  background: rgba(6,10,19,.62);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;padding:14px 0
}
.brand{
  display:flex;align-items:center;gap:12px;
  font-weight:950;letter-spacing:.2px
}

/* Si NO hay logo, este badge funciona; si hay logo, lo reemplazas con <img> */
.brand-badge{
  width:40px;height:40px;border-radius:14px;
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(239,68,68,.95));
  box-shadow:
    0 18px 60px rgba(37,99,235,.20),
    0 12px 40px rgba(239,68,68,.12);
  border:1px solid rgba(255,255,255,.12);
}

.nav a{
  color:rgba(234,241,255,.78);
  text-decoration:none;
  font-weight:800;
  letter-spacing:.01em;
}
.nav a:hover{color:var(--text)}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color:var(--text);
  text-decoration:none;
  font-weight:900;
  transition:.18s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.16)}
.btn.primary{
  border-color: rgba(239,68,68,.45);
  background: linear-gradient(135deg, rgba(37,99,235,.95), rgba(239,68,68,.90));
  box-shadow:
    0 18px 70px rgba(37,99,235,.22),
    0 14px 50px rgba(239,68,68,.14);
}
.btn.primary:hover{filter:brightness(1.06)}
.btn.small-btn{padding:10px 12px; border-radius:14px; font-size:.92rem}

/* ===== CARDS ===== */
.card{
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(600px 200px at 10% 0%, rgba(37,99,235,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.pad{padding:22px}

/* ===== TEXT ===== */
.kicker, .kicker-pro{
  color:rgba(96,165,250,.95);
  font-weight:950;
  letter-spacing:.16em;
  font-size:.74rem;
  text-transform:uppercase;
}
.h1{
  font-size: clamp(2.2rem, 4.2vw, 3.3rem);
  line-height:1.02;
  margin:10px 0 12px;
  font-weight:950;
  letter-spacing:-.02em;
}
.p{
  color:rgba(167,180,214,.92);
  font-size:1.03rem;
  line-height:1.7;
  margin:0 0 16px
}
.hr{height:1px;background:rgba(255,255,255,.10);margin:18px 0}

/* ===== GRID ===== */
.grid{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
@media(max-width: 900px){.grid{grid-template-columns:1fr}}

.item{
  border:1px solid rgba(255,255,255,.09);
  border-radius:18px;
  background: rgba(11,18,32,.56);
  padding:16px;
  box-shadow: var(--shadow2);
}
.item h3{margin:0 0 8px; font-size:1.04rem; font-weight:950}
.item p{margin:0;color:rgba(167,180,214,.92);line-height:1.6;font-size:.96rem}

/* ===== FOOTER ===== */
.footer{
  margin-top:44px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.26);
}
.footer .row{
  display:flex;gap:14px;align-items:center;justify-content:space-between;flex-wrap:wrap;
  padding:18px 0
}
.small{color:rgba(167,180,214,.9);font-size:.92rem}

/* ===== WhatsApp Floating ===== */
.wa-float{
  position:fixed; right:18px; bottom:18px; z-index:80;
  width:56px; height:56px; border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; color:white;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 18px 60px rgba(34,197,94,.25);
  border:1px solid rgba(255,255,255,.18);
}

/* =========================================================
   ===== HOME PRO (Tech Premium) — Mejorado (Azul + Rojo) =====
   ========================================================= */
.hero-pro{padding:60px 0 28px}
.hero-pro-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}
@media(max-width:980px){.hero-pro-grid{grid-template-columns:1fr}}

.badge-pro{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(234,241,255,.78);
  font-weight:900;
}
.badge-pro .dot{
  width:10px;height:10px;border-radius:999px;
  background: radial-gradient(circle, var(--accent), var(--brand));
  box-shadow:
    0 0 18px rgba(239,68,68,.40),
    0 0 26px rgba(37,99,235,.28);
}

.hero-title{
  margin:14px 0 12px;
  font-weight:950;
  letter-spacing:-.02em;
  font-size: clamp(2.3rem, 4.7vw, 3.55rem);
  line-height:1.01;
}
.hero-sub{
  margin:0 0 18px;
  color:rgba(167,180,214,.92);
  line-height:1.7;
  font-size:1.06rem;
}

.hero-actions{display:flex; gap:12px; flex-wrap:wrap}

.hero-metrics{
  margin-top:18px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:10px;
}
@media(max-width:700px){.hero-metrics{grid-template-columns:1fr}}
.metric{
  border:1px solid rgba(255,255,255,.09);
  background: rgba(11,18,32,.56);
  border-radius:18px;
  padding:12px 14px;
  box-shadow: var(--shadow2);
}
.metric-k{
  color:rgba(96,165,250,.95);
  font-weight:950;
  font-size:.82rem;
  letter-spacing:.10em;
  text-transform:uppercase
}
.metric-v{margin-top:6px; font-weight:950}

.visual-card{
  border:1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  overflow:hidden;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(37,99,235,.35), transparent 55%),
    radial-gradient(900px 420px at 92% 10%, rgba(239,68,68,.20), transparent 58%),
    radial-gradient(900px 420px at 60% 10%, rgba(96,165,250,.16), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.visual-top{
  padding:14px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.chip{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight:950;
}
.lights{
  width:48px;height:48px;border-radius:18px;
  background:
    radial-gradient(circle, rgba(239,68,68,.30), transparent 55%),
    radial-gradient(circle, rgba(37,99,235,.34), transparent 55%);
  filter: blur(.1px);
}

.visual-body{padding:16px}
.mock-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:12px;
  align-items:stretch;
}
.mock-panel{
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.20);
  border-radius:20px;
  padding:14px;
}
.mock-title{font-weight:950; margin-bottom:10px}
.mock-row{display:flex; gap:8px; margin-bottom:14px}
.pill{
  display:inline-block;width:34px;height:10px;border-radius:999px;
  background:rgba(255,255,255,.10)
}
.mock-bars{display:flex; gap:8px; align-items:flex-end; height:94px}
.bar{
  width:14%;
  border-radius:12px;
  background: linear-gradient(180deg, rgba(96,165,250,.95), rgba(37,99,235,.55));
  box-shadow: 0 14px 40px rgba(37,99,235,.18);
}
.mock-phone{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  border-radius:24px;
  padding:12px;
  position:relative;
}
.mock-notch{
  width:60%;height:10px;border-radius:999px;
  background: rgba(255,255,255,.10);
  margin:4px auto 10px;
}
.mock-screen{
  border-radius:18px;
  padding:12px;
  background:
    radial-gradient(260px 140px at 10% 0%, rgba(37,99,235,.28), transparent 62%),
    radial-gradient(260px 140px at 90% 0%, rgba(239,68,68,.18), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
}
.mock-live{
  font-weight:950;color:var(--text);
  display:flex;align-items:center;gap:8px
}
.live-dot{
  width:8px;height:8px;border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 16px rgba(239,68,68,.45);
}

/* Ecualizador */
.eq{display:flex;gap:6px;align-items:flex-end;height:64px;margin:12px 0}
.eq span{
  width:10px;border-radius:999px;
  background: linear-gradient(180deg, rgba(239,68,68,.92), rgba(37,99,235,.55));
  box-shadow:
    0 10px 28px rgba(239,68,68,.12),
    0 10px 28px rgba(37,99,235,.12);
  height: 20px;
  animation: eq 1.2s infinite ease-in-out;
}
.eq span:nth-child(2){animation-delay:.1s;height:34px}
.eq span:nth-child(3){animation-delay:.2s;height:48px}
.eq span:nth-child(4){animation-delay:.3s;height:30px}
.eq span:nth-child(5){animation-delay:.4s;height:56px}
.eq span:nth-child(6){animation-delay:.5s;height:38px}
@keyframes eq{
  0%,100%{transform:translateY(0);filter:brightness(1)}
  50%{transform:translateY(-6px);filter:brightness(1.08)}
}

.mock-cta{
  margin-top:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  font-weight:950;
  color: rgba(167,180,214,.95);
}

.visual-foot{
  margin-top:12px;
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.trust{display:flex;gap:10px;align-items:flex-start}
.trust i{color:var(--brand2);font-size:1.1rem;margin-top:2px}
.t1{font-weight:950}
.t2{color:rgba(167,180,214,.92);font-size:.92rem}

/* Servicios Pro */
.section-pro{padding:28px 0}
.sec-head{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:12px;flex-wrap:wrap;margin-bottom:12px
}
.sec-title-pro{
  margin:6px 0 0;
  font-weight:950;
  font-size:1.62rem;
  letter-spacing:-.01em;
}

.cards-pro{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media(max-width:980px){.cards-pro{grid-template-columns:1fr}}
.card-pro{
  border:1px solid rgba(255,255,255,.09);
  background: rgba(11,18,32,.56);
  border-radius:20px;
  padding:16px;
  transition:.18s ease;
  box-shadow: var(--shadow2);
}
.card-pro:hover{
  transform:translateY(-2px);
  border-color: rgba(96,165,250,.20);
  box-shadow:
    0 22px 90px rgba(0,0,0,.35),
    0 14px 60px rgba(37,99,235,.10),
    0 10px 40px rgba(239,68,68,.08);
}
.icon-pro{
  width:46px;height:46px;border-radius:18px;
  display:flex;align-items:center;justify-content:center;
  background: linear-gradient(135deg, rgba(37,99,235,.22), rgba(239,68,68,.18));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(37,99,235,.10);
}
.icon-pro i{color:var(--text);font-size:1.25rem}
.card-pro-title{margin-top:10px;font-weight:950}
.card-pro-desc{margin-top:6px;color:rgba(167,180,214,.92);line-height:1.6}

/* CTA */
.cta-pro{
  margin:30px 0 0;
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  padding:18px;
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(37,99,235,.28), transparent 60%),
    radial-gradient(700px 280px at 90% 0%, rgba(239,68,68,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
  box-shadow: var(--shadow2);
}
.cta-title{font-weight:950;font-size:1.4rem;margin-top:6px;letter-spacing:-.01em}
.cta-sub{color:rgba(167,180,214,.92);margin-top:6px;max-width:720px}
.cta-right{display:flex;gap:12px;flex-wrap:wrap}
/* ===== WOW HERO ===== */
.hero-wow{
  position:relative;
  padding:72px 0 34px;
  overflow:hidden;
}
.hero-wow::before{
  content:"";
  position:absolute;
  inset:-200px -200px auto -200px;
  height:520px;
  background:
    radial-gradient(circle at 16% 20%, rgba(37,99,235,.55), transparent 58%),
    radial-gradient(circle at 60% 10%, rgba(239,68,68,.35), transparent 62%),
    radial-gradient(circle at 85% 30%, rgba(96,165,250,.22), transparent 62%);
  filter: blur(18px);
  opacity:.95;
  pointer-events:none;
}
.hero-wow::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.06), transparent 22%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.05), transparent 24%),
    radial-gradient(circle at 40% 70%, rgba(255,255,255,.04), transparent 26%);
  opacity:.55;
  pointer-events:none;
}

.hero-wow-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap:18px;
  align-items:stretch;
}
@media(max-width:980px){.hero-wow-grid{grid-template-columns:1fr}}

.wow-badge{
  display:inline-flex;align-items:center;gap:10px;flex-wrap:wrap;
  padding:10px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(234,241,255,.92);
  font-weight:950;
}
.wow-dot{
  width:10px;height:10px;border-radius:999px;
  background: radial-gradient(circle, rgba(255,255,255,.9), var(--accent), var(--brand));
  box-shadow: 0 0 18px rgba(239,68,68,.45), 0 0 26px rgba(37,99,235,.35);
}
.wow-pill{
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(234,241,255,.85);
  font-weight:950;
  font-size:.86rem;
}

.wow-title{
  margin:16px 0 12px;
  font-weight:950;
  letter-spacing:-.03em;
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  line-height:1.0;
  text-shadow: 0 20px 120px rgba(0,0,0,.55);
}
.wow-grad{
  background: linear-gradient(135deg, rgba(96,165,250,1), rgba(239,68,68,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.wow-sub{
  color: rgba(167,180,214,.95);
  font-size:1.08rem;
  line-height:1.75;
  max-width: 640px;
}
.wow-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.wow-cta{padding:13px 18px;border-radius:18px}
.wow-ghost{background: rgba(0,0,0,.18)}

.wow-trust{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
@media(max-width:700px){.wow-trust{grid-template-columns:1fr}}
.trust-card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(11,18,32,.60);
  border-radius:18px;
  padding:12px 14px;
  box-shadow: 0 12px 44px rgba(0,0,0,.35);
  display:flex;gap:10px;align-items:center;
}
.t-big{font-size:1.2rem}
.t-h{font-weight:950}
.t-p{color: rgba(167,180,214,.92); font-size:.92rem}

.wow-proof{
  margin-top:16px;
  display:flex;gap:12px;flex-wrap:wrap;
}
.proof-item{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  border-radius:18px;
  padding:10px 12px;
}
.proof-num{font-weight:950;font-size:1.1rem}
.proof-label{color: rgba(167,180,214,.92); font-size:.9rem}

/* Right card WOW */
.wow-card{
  border:1px solid rgba(255,255,255,.14);
  border-radius:26px;
  overflow:hidden;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(37,99,235,.35), transparent 58%),
    radial-gradient(900px 420px at 92% 10%, rgba(239,68,68,.20), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:
    0 34px 140px rgba(0,0,0,.55),
    0 20px 90px rgba(37,99,235,.18),
    0 18px 80px rgba(239,68,68,.12);
}
.wow-card-top{padding:18px 18px 12px;border-bottom:1px solid rgba(255,255,255,.08)}
.logo-wrap{
  width:96px;height:96px;border-radius:26px;
  background: rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.12);
  display:flex;align-items:center;justify-content:center;
  box-shadow: 0 18px 70px rgba(0,0,0,.45);
}
.wow-logo{max-width:78px;max-height:78px;object-fit:contain;filter: drop-shadow(0 18px 50px rgba(0,0,0,.55))}
.wow-card-title{margin-top:12px;font-weight:950;font-size:1.25rem}
.wow-card-sub{margin-top:6px;color:rgba(167,180,214,.95)}

.wow-mini{
  padding:14px 18px;
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}
.mini-box{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  border-radius:18px;
  padding:12px 14px;
}
.mini-h{font-weight:950;display:flex;gap:10px;align-items:center}
.mini-h i{color: var(--brand2)}
.mini-p{color:rgba(167,180,214,.92);margin-top:6px;font-size:.92rem}
.mini-bar{height:10px;border-radius:999px;background: rgba(255,255,255,.08);margin-top:10px;overflow:hidden}
.mini-bar span{
  display:block;height:100%;
  background: linear-gradient(135deg, rgba(96,165,250,1), rgba(37,99,235,.85));
  border-radius:999px;
}
.mini-bar.red span{
  background: linear-gradient(135deg, rgba(239,68,68,1), rgba(37,99,235,.85));
}

.wow-card-foot{
  padding:14px 18px 18px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;align-items:center;
}
.wow-sec-h{font-weight:950}
.wow-sec-p{color:rgba(167,180,214,.92);font-size:.92rem;margin-top:4px}

.wow-section{padding:28px 0}
.wow-head{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;flex-wrap:wrap}

/* WOW Process */
.wow-process{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:12px;
}
@media(max-width:1050px){.wow-process{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.wow-process{grid-template-columns:1fr}}
.proc-card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(11,18,32,.60);
  border-radius:22px;
  padding:16px;
  box-shadow: 0 14px 60px rgba(0,0,0,.35);
}
.proc-n{
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:16px;
  background: linear-gradient(135deg, rgba(37,99,235,.22), rgba(239,68,68,.18));
  border:1px solid rgba(255,255,255,.10);
  font-weight:950;
}
.proc-t{margin-top:10px;font-weight:950}
.proc-d{margin-top:6px;color:rgba(167,180,214,.92);line-height:1.6}
/* ===== ROJO VIVO (sin degradado) ===== */
:root{
  --red:#FF1E1E;      /* rojo vivo */
  --redGlow: rgba(255,30,30,.45);
}

/* Botón principal: azul con acento rojo sólido */
.btn.primary{
  background: var(--brand);                /* azul sólido */
  border-color: rgba(255,255,255,.16);
  box-shadow:
    0 22px 90px rgba(37,99,235,.28),
    0 18px 70px rgba(0,0,0,.35);
  position:relative;
  overflow:hidden;
}

/* Línea roja viva en el botón (sin degradado) */
.btn.primary::after{
  content:"";
  position:absolute;
  left:14px; right:14px; bottom:10px;
  height:3px;
  border-radius:999px;
  background: var(--red);
  box-shadow: 0 0 18px var(--redGlow);
  opacity:.95;
}

/* Dot rojo vivo */
.wow-dot,
.badge-pro .dot,
.live-dot{
  background: var(--red) !important;
  box-shadow: 0 0 18px var(--redGlow), 0 0 26px rgba(96,165,250,.22) !important;
}

/* Rojo vivo para la “LIVE” */
.mock-live{color: rgba(234,241,255,.92)}
.mock-live .live-dot{background: var(--red) !important}

/* Barras rojas vivas (sin degradado) */
.mini-bar.red span{
  background: var(--red) !important;
  box-shadow: 0 0 18px var(--redGlow);
}

/* Acentos: bordes/hover con rojo vivo */
.card-pro:hover{
  border-color: rgba(255,30,30,.22) !important;
  box-shadow:
    0 24px 110px rgba(0,0,0,.45),
    0 18px 80px rgba(37,99,235,.14),
    0 14px 60px rgba(255,30,30,.16) !important;
}

/* Chip y etiquetas con un toque rojo vivo */
.wow-pill{
  border-color: rgba(255,30,30,.22) !important;
}
/* ===== Segmentos WOW (Empresa / Radio / Iglesia) ===== */
.wow-segments{
  margin-top:18px;
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}
.seg-card{
  text-decoration:none;
  color:var(--text);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(11,18,32,.60);
  border-radius:22px;
  padding:14px;
  box-shadow: 0 14px 60px rgba(0,0,0,.35);
  transition:.18s ease;
}
.seg-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,30,30,.22);
  box-shadow:
    0 22px 90px rgba(0,0,0,.45),
    0 16px 70px rgba(37,99,235,.12),
    0 12px 55px rgba(255,30,30,.14);
}
.seg-top{display:flex;gap:12px;align-items:flex-start}
.seg-ico{
  width:46px;height:46px;border-radius:18px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(255,30,30,.10);
  border:1px solid rgba(255,30,30,.22);
  box-shadow: 0 0 18px rgba(255,30,30,.12);
  flex:0 0 auto;
}
.seg-ico i{color: var(--red); font-size:1.2rem}
.seg-t{font-weight:950}
.seg-d{margin-top:6px;color:rgba(167,180,214,.92);line-height:1.6;font-size:.95rem}
.seg-foot{
  margin-top:12px;
  display:flex;justify-content:space-between;align-items:center;
  color: rgba(234,241,255,.90);
  font-weight:950;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:10px;
}
/* ===== Admin Portfolio ULTRA PRO ===== */
.pf-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
@media(max-width: 980px){ .pf-grid{grid-template-columns:1fr} }

.pf-card{
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(520px 220px at 20% 0%, rgba(37,99,235,.14), transparent 60%),
    rgba(11,18,32,.62);
  border-radius:22px;
  overflow:hidden;
  box-shadow: 0 14px 60px rgba(0,0,0,.35);
  transition:.18s ease;
}
.pf-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,30,30,.22);
  box-shadow:
    0 24px 110px rgba(0,0,0,.45),
    0 16px 80px rgba(37,99,235,.12),
    0 12px 60px rgba(255,30,30,.12);
}

.pf-media{
  position:relative;
  height:180px;
  background:
    radial-gradient(600px 220px at 10% 0%, rgba(37,99,235,.26), transparent 62%),
    radial-gradient(600px 220px at 90% 0%, rgba(255,30,30,.14), transparent 65%),
    rgba(0,0,0,.35);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.pf-media img{
  width:100%; height:100%;
  object-fit:cover;
  opacity:.92;
  filter: contrast(1.05) saturate(1.05);
}
.pf-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.55) 88%);
  pointer-events:none;
}

.pf-badges{
  position:absolute; left:12px; top:12px;
  display:flex; gap:8px; flex-wrap:wrap;
  z-index:2;
}
.pf-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  font-weight:950;
  font-size:.85rem;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: rgba(234,241,255,.92);
}
.pf-badge.red{
  border-color: rgba(255,30,30,.30);
  background: rgba(255,30,30,.12);
  color: #FFE5E5;
  box-shadow: 0 0 18px rgba(255,30,30,.14);
}

.pf-body{ padding:14px 14px 12px; }
.pf-title{
  font-weight:950;
  font-size:1.05rem;
  line-height:1.25;
}
.pf-meta{
  margin-top:6px;
  color: rgba(167,180,214,.92);
  font-size:.92rem;
  display:flex; gap:10px; flex-wrap:wrap;
}
.pf-meta b{color: rgba(234,241,255,.92)}

.pf-desc{
  margin-top:10px;
  color: rgba(167,180,214,.92);
  line-height:1.6;
  font-size:.95rem;
}

.pf-actions{
  margin-top:12px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.btn.compact{
  padding:10px 12px;
  border-radius:14px;
  font-weight:950;
  font-size:.92rem;
}
.btn.dangerline{
  background: rgba(255,30,30,.08);
  border-color: rgba(255,30,30,.22);
}
.btn.dangerline:hover{
  border-color: rgba(255,30,30,.32);
}

.pf-foot{
  padding:12px 14px 14px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; align-items:center;
}
.pf-links{display:flex; gap:10px; flex-wrap:wrap}
.pf-state{
  color: rgba(234,241,255,.92);
  font-weight:950;
  display:flex; gap:10px; align-items:center;
}
.pf-dot{
  width:8px;height:8px;border-radius:999px;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34,197,94,.35);
}
.pf-dot.off{
  background: #ff1e1e;
  box-shadow: 0 0 14px rgba(255,30,30,.35);
}
:root{
  /* rojo vivo */
  --red:#ff1e1e;
  --red2:#ff3b3b;

  /* azules más vivos */
  --brand:#2563eb;
  --brand2:#60a5fa;

  /* fondo más “vivo” */
  --bg:#060914;
  --panel: rgba(13,18,36,.72);
  --stroke: rgba(255,255,255,.10);
}

/* Fondo principal más vivo (glow azul + glow rojo sólido) */
body{
  background:
    radial-gradient(1100px 520px at 12% 10%, rgba(37,99,235,.38), transparent 58%),
    radial-gradient(950px 520px at 88% 12%, rgba(255,30,30,.26), transparent 60%),
    radial-gradient(900px 420px at 50% 0%, rgba(96,165,250,.18), transparent 62%),
    linear-gradient(180deg, #050712, var(--bg));
}

/* Cards más contrastadas (más “pop”) */
.card{
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: 0 22px 90px rgba(0,0,0,.48);
}

/* Botón primary con rojo vivo (sin degradar rojo) */
.btn.primary{
  border-color: rgba(255,30,30,.45);
  background: var(--red);
  box-shadow: 0 18px 70px rgba(255,30,30,.22);
}
.btn.primary:hover{ filter: brightness(1.07); }

/* Detalles “vivos” en chips/badges (si los usas) */
.pf-badge.red{
  background: rgba(255,30,30,.14);
  border-color: rgba(255,30,30,.35);
  box-shadow: 0 0 22px rgba(255,30,30,.18);
}
/* ===== Fix layout: que NO se estire raro y no deje huecos ===== */
.hero-grid,
.hero-pro-grid{
  align-items: start;   /* clave: evita estirado feo */
}

/* Reduce altura visual de tarjetas de la izquierda (Empresas/Radios/Iglesias) */
.item{
  padding:14px;
}

/* Si tus cards de la izquierda son "bloques" grandes, compacta títulos */
.item h3{ margin:0 0 6px; }
.item p{ margin:0; }

/* Reduce el espacio entre secciones en home */
.section, .section-pro{ padding:18px 0; }

/* Si hay un bloque a la derecha muy alto, que el de la izquierda no se vea “vacío” */
.hero-metrics{ margin-top:12px; }
