: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; }
/* ===== HERO WOW: VIVO + PRO ===== */
:root{
  --red:#ff1e1e;         /* rojo vivo sólido */
  --redGlow: rgba(255,30,30,.30);
  --blueGlow: rgba(37,99,235,.42);
}

/* Fondo general más vivo (sin “tristeza”) */
body{
  background:
    radial-gradient(1200px 560px at 12% 6%, var(--blueGlow), transparent 58%),
    radial-gradient(1100px 540px at 88% 8%, var(--redGlow), transparent 62%),
    radial-gradient(900px 420px at 50% 0%, rgba(96,165,250,.18), transparent 62%),
    linear-gradient(180deg, #050712, #060914);
}

/* Sección hero con glow propio (más impacto) */
.hero-wow{
  padding: 56px 0 24px;
  position:relative;
}
.hero-wow::before{
  content:"";
  position:absolute; inset:-40px 0 auto 0;
  height: 420px;
  background:
    radial-gradient(900px 380px at 18% 20%, rgba(37,99,235,.35), transparent 60%),
    radial-gradient(800px 340px at 85% 20%, rgba(255,30,30,.22), transparent 64%);
  pointer-events:none;
  filter: blur(.2px);
}

/* Grid: evita estirado raro (arregla el hueco) */
.hero-wow-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;     /* ✅ CLAVE */
}
@media(max-width: 980px){
  .hero-wow-grid{ grid-template-columns:1fr; }
}

/* Badge */
.wow-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: rgba(234,241,255,.92);
  font-weight: 900;
  flex-wrap:wrap;
}
.wow-dot{
  width:10px;height:10px;border-radius:999px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(255,30,30,.45);
}
.wow-pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(234,241,255,.92);
  font-weight: 950;
}

/* Título WOW */
.wow-title{
  margin:14px 0 10px;
  font-weight: 950;
  letter-spacing:-.02em;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.02;
  text-shadow:
    0 18px 80px rgba(37,99,235,.20),
    0 10px 60px rgba(255,30,30,.12);
}

/* La palabra “cara” SIN degradado triste */
.wow-grad{
  color: var(--red);              /* ✅ rojo vivo sólido */
  text-shadow: 0 0 22px rgba(255,30,30,.22);
}

/* Sub */
.wow-sub{
  margin: 0 0 16px;
  color: rgba(167,180,214,.95);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Botones */
.wow-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:14px; }
.wow-ghost{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.10);
}
.btn.primary{
  background: var(--red);         /* ✅ rojo vivo */
  border-color: rgba(255,30,30,.48);
  box-shadow: 0 18px 70px rgba(255,30,30,.22);
}
.btn.primary:hover{ filter: brightness(1.07); }

/* Proof más compacto (evita que se vea gigante) */
.wow-proof{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin: 10px 0 14px;
}
@media(max-width: 680px){
  .wow-proof{ grid-template-columns:1fr; }
}
.proof-item{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  border-radius:16px;
  padding: 10px 12px;
}
.proof-num{ font-weight:950; font-size:1.05rem; }
.proof-label{ color: rgba(167,180,214,.92); font-weight:800; font-size:.92rem; margin-top:4px; }

/* Segmentos: 2 columnas para que NO se vea enorme y no deje espacios raros */
.wow-segments{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.wow-segments .seg-card:nth-child(3){
  grid-column: 1 / -1; /* la tercera ocupa todo (se ve pro) */
}
@media(max-width: 980px){
  .wow-segments{ grid-template-columns: 1fr; }
  .wow-segments .seg-card:nth-child(3){ grid-column:auto; }
}

.seg-card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  border-radius: 18px;
  padding: 14px;
  text-decoration:none;
  transition:.18s ease;
}
.seg-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,30,30,.22);
  box-shadow:
    0 24px 110px rgba(0,0,0,.45),
    0 18px 80px rgba(37,99,235,.10),
    0 14px 70px rgba(255,30,30,.10);
}
.seg-top{ display:flex; gap:12px; align-items:flex-start; }
.seg-ico{
  width:44px;height:44px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,30,30,.22);
  background: rgba(255,30,30,.10);
  box-shadow: 0 0 22px rgba(255,30,30,.12);
}
.seg-ico i{ color: var(--red); font-size:1.2rem; }
.seg-t{ font-weight:950; color: rgba(234,241,255,.95); }
.seg-d{ margin-top:6px; color: rgba(167,180,214,.92); line-height:1.5; font-size:.95rem; }
.seg-foot{
  margin-top:12px;
  padding-top:10px;
  border-top:1px solid rgba(255,255,255,.08);
  color: rgba(234,241,255,.92);
  font-weight:950;
  display:flex; align-items:center; justify-content:space-between;
}

/* Columna derecha: card más viva y sin “apagado” */
.wow-card{
  border:1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  overflow:hidden;
  background:
    radial-gradient(820px 360px at 20% 0%, rgba(37,99,235,.26), transparent 60%),
    radial-gradient(720px 340px at 90% 10%, rgba(255,30,30,.18), transparent 62%),
    rgba(0,0,0,.22);
  box-shadow: 0 22px 90px rgba(0,0,0,.48);
}
.wow-card-top{ padding:16px; border-bottom:1px solid rgba(255,255,255,.08); }
.logo-wrap{
  width:56px;height:56px;border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:10px;
}
.wow-logo{ width:40px;height:40px; object-fit:contain; filter: drop-shadow(0 10px 18px rgba(0,0,0,.25)); }

.wow-card-title{ font-weight:950; font-size:1.15rem; margin-top:4px; }
.wow-card-sub{ color: rgba(167,180,214,.92); margin-top:6px; line-height:1.5; }

/* Mini boxes más compactas (menos altura) */
.wow-mini{ padding:14px 16px; display:grid; gap:10px; }
.mini-box{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  border-radius:18px;
  padding: 12px 12px;
}
.mini-h{ font-weight:950; display:flex; gap:8px; align-items:center; }
.mini-h i{ color: rgba(234,241,255,.92); }
.mini-p{ color: rgba(167,180,214,.92); margin-top:4px; font-weight:800; }
.mini-bar{
  height:10px; border-radius:999px;
  background: rgba(255,255,255,.08);
  overflow:hidden;
  margin-top:10px;
}
.mini-bar span{
  display:block; height:100%;
  background: rgba(96,165,250,.95);
}
.mini-bar.red span{ background: var(--red); } /* ✅ rojo vivo */

/* Footer card más compacto */
.wow-card-foot{
  padding:14px 16px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
}
.wow-sec-h{ font-weight:950; }
.wow-sec-p{ color: rgba(167,180,214,.92); margin-top:4px; }
.hero-wow-grid{ align-items:stretch; }

.hero-wow-left,
.hero-wow-right{ display:flex; flex-direction:column; height:100%; }

.hero-wow-right .wow-card{ height:100%; display:flex; flex-direction:column; }
.hero-wow-right .wow-card-foot{ margin-top:auto; }

.hero-wow{ padding:72px 0; min-height:560px; }
.card-pro{
  background:rgba(2,6,23,.65);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  overflow:hidden;
  transition:.35s;
}

.card-pro:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 48px rgba(0,0,0,.45);
  border-color:rgba(255,255,255,.14);
}

.card-pro-img{
  height:160px;
  overflow:hidden;
}

.card-pro-img{
  height:auto;           /* importante */
  background:#020617;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
}

.card-pro-img img{
  width:100%;
  height:auto;
  object-fit:contain;    /* 👈 evita que se corte */
}

.card-pro-body{
  padding:18px;
}
/* ===== FOTO HERO PRO ===== */

.hero-wow{
  position:relative;
  overflow:hidden;
}

.hero-person-pro{
  position:absolute;
  right:-40px;
  bottom:-10px;
  width:min(520px, 42vw);
  height:calc(100% + 30px);

  background:url('/assets/img/mi-foto.png') no-repeat bottom right;
  background-size:contain;

  opacity:.22;
  pointer-events:none;
  z-index:0;

  -webkit-mask-image: radial-gradient(circle at 70% 65%,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,.95) 35%,
    rgba(0,0,0,.55) 60%,
    rgba(0,0,0,0) 78%);
  mask-image: radial-gradient(circle at 70% 65%,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,.95) 35%,
    rgba(0,0,0,.55) 60%,
    rgba(0,0,0,0) 78%);
}

.hero-wow::after{
  content:"";
  position:absolute;
  right:-180px;
  bottom:-220px;
  width:560px;
  height:560px;
  background:
    radial-gradient(circle, rgba(239,68,68,.22), transparent 60%),
    radial-gradient(circle at 35% 35%, rgba(59,130,246,.18), transparent 60%);
  filter: blur(6px);
  pointer-events:none;
  z-index:0;
}

.hero-wow .container{
  position:relative;
  z-index:2;
}
/* =========================
   HERO FOTO PRO (FALTA ESTO)
========================= */

.hero-wow{
  position:relative;    /* necesario */
  overflow:hidden;
}

/* la foto en el hero */
.hero-person-pro{
  position:absolute;
  right:-40px;
  bottom:-10px;
  width:min(520px, 42vw);
  height:calc(100% + 30px);

  background:url('/assets/img/mi-foto.png') no-repeat bottom right;
  background-size:contain;

  opacity:.22;
  pointer-events:none;
  z-index:0;

  -webkit-mask-image: radial-gradient(circle at 70% 65%,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,.95) 35%,
    rgba(0,0,0,.55) 60%,
    rgba(0,0,0,0) 78%);
  mask-image: radial-gradient(circle at 70% 65%,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,.95) 35%,
    rgba(0,0,0,.55) 60%,
    rgba(0,0,0,0) 78%);
}

/* glow detrás */
.hero-wow::after{
  content:"";
  position:absolute;
  right:-180px;
  bottom:-220px;
  width:560px;
  height:560px;
  background:
    radial-gradient(circle, rgba(239,68,68,.22), transparent 60%),
    radial-gradient(circle at 35% 35%, rgba(59,130,246,.18), transparent 60%);
  filter: blur(6px);
  opacity:.9;
  pointer-events:none;
  z-index:0;
}

/* asegura que el contenido quede arriba */
.hero-wow .container,
.hero-wow .hero-wow-grid{
  position:relative;
  z-index:2;
}
.card-pro-img{
  height:auto;
  background:#020617;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
}

.card-pro-img img{
  width:100%;
  height:auto;
  object-fit:contain;
  display:block;
}
.hero-wow{
  position:relative;
  overflow:hidden;
}

/* ✅ FOTO HERO */
.hero-person-pro{
  position:absolute;
  right:-40px;
  bottom:-10px;
  width:min(520px, 42vw);
  height:auto;

  opacity:.22;
  pointer-events:none;

  z-index:1;           /* ✅ arriba del fondo */
  filter:saturate(1.05) contrast(1.05);
}

/* ✅ Glow atrás (NO tapa la foto) */
.hero-wow::after{
  content:"";
  position:absolute;
  right:-180px;
  bottom:-220px;
  width:560px;
  height:560px;
  background:
    radial-gradient(circle, rgba(239,68,68,.22), transparent 60%),
    radial-gradient(circle at 35% 35%, rgba(59,130,246,.18), transparent 60%);
  filter: blur(6px);
  opacity:.9;
  pointer-events:none;
  z-index:0;           /* ✅ queda atrás */
}

/* ✅ contenido encima */
.hero-wow .container,
.hero-wow .hero-wow-grid{
  position:relative;
  z-index:2;
}

@media (max-width: 992px){
  .hero-person-pro{
    right:-60px;
    width:min(380px, 60vw);
    opacity:.14;
  }
  .hero-wow::after{ opacity:.6; }
}
.hero-person-pro{
  position:absolute;
  right:-30px;
  top:50%;                 /* ✅ la centra vertical */
  transform:translateY(-50%); /* ✅ sube a la mitad */

  width:min(560px, 45vw);  /* ✅ un poco más grande */
  height:auto;

  opacity:.26;
  pointer-events:none;
  z-index:1;

  filter:saturate(1.05) contrast(1.05);
}
/* ✅ HERO responsive a móvil */
@media (max-width: 992px){
  .hero-wow-grid{ 
    display:grid;
    grid-template-columns:1fr !important;
    gap:18px;
  }
  .hero-person-pro{ display:none; } /* opcional para que no tape */
}
.card-pro-img{
  background:#020617;
  padding:10px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.card-pro-img img{
  width:100%;
  height:auto;
  object-fit:contain;
  display:block;
}
/* =========================================
   FIX SLIDER EN MOVIL (NO SE CORTA FEO)
   ========================================= */

/* Desktop queda igual */
.ps-slide img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
}

/* ✅ Móvil: sin recorte */
@media(max-width: 640px){

  /* el contenedor que no se estire raro */
  .price-slider{ border-radius:18px; }

  /* la imagen NO se corta */
  .ps-slide img{
    height:auto !important;
    aspect-ratio: 16 / 9;     /* mantiene proporción bonita */
    object-fit:contain !important;
    background:#020617;       /* fondo cuando sobra espacio */
  }

  /* caption más compacto */
  .ps-caption{
    left:12px;
    right:12px;
    bottom:12px;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .ps-cap-left{
    max-width:100%;
    padding:10px 12px;
    border-radius:14px;
  }

  .ps-title{ font-size:16px; }
  .ps-sub{ font-size:12.5px; }

  /* dots alineados a la izquierda */
  .ps-dots{ justify-content:flex-start; }
}
/* ================================
   PLANES (PROCA) — /planes
================================ */

.w-100{width:100%}

.plans-hero{
  padding:56px 0 22px;
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(37,99,235,.45), transparent 60%),
    radial-gradient(900px 500px at 85% 25%, rgba(239,68,68,.35), transparent 55%),
    linear-gradient(180deg, #070b14, #060914);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.plans-hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}

.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:800;
  font-size:.9rem;
}

.plans-title{
  margin:14px 0 10px;
  font-size:clamp(2rem, 4vw, 3.1rem);
  line-height:1.02;
  letter-spacing:-.02em;
}

.plans-sub{
  margin:0;
  color:var(--muted);
  font-size:1.05rem;
  max-width:60ch;
}

.plans-actions{
  margin-top:16px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

.btn.ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.14);
  color:var(--text);
}
.btn.ghost:hover{
  border-color:rgba(255,255,255,.22);
  transform:translateY(-1px);
}

.mini-note{
  margin-top:14px;
  display:flex;
  gap:8px;
  align-items:center;
  color:rgba(255,255,255,.75);
  font-weight:700;
  font-size:.92rem;
}

.plans-side .side-card{
  height:100%;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
  padding:18px;
  backdrop-filter: blur(10px);
}

.side-top{
  display:flex;
  gap:12px;
  align-items:center;
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.side-ic{
  width:44px;height:44px;
  display:grid;place-items:center;
  border-radius:14px;
  background:rgba(37,99,235,.18);
  border:1px solid rgba(37,99,235,.25);
}

.side-title{font-weight:900}
.side-sub{color:var(--muted); font-weight:700; font-size:.92rem}

.side-list{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.side-item{
  display:flex;
  gap:10px;
  align-items:center;
  color:rgba(255,255,255,.88);
  font-weight:700;
}
.side-item i{color:rgba(96,165,250,.95)}

.plans-wrap{
  padding:40px 0 68px;
  background:linear-gradient(180deg, #060914, #05070c);
}

.plans-head{
  margin-bottom:16px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.sec-title{margin:0}
.sec-sub{margin:0;color:var(--muted);font-weight:700}

.plans-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  align-items:stretch;
}

.plan-card{
  position:relative;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  box-shadow: 0 18px 70px rgba(0,0,0,.25);
  padding:18px;
  overflow:hidden;
  transition:.25s ease;
  backdrop-filter: blur(10px);
}

.plan-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.16);
}

.plan-top{
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.plan-name{
  font-weight:900;
  font-size:1.05rem;
  letter-spacing:.02em;
}

.plan-price{
  margin-top:10px;
  font-size:2rem;
  font-weight:900;
  letter-spacing:-.02em;
}
.plan-price span{
  font-size:.95rem;
  color:var(--muted);
  font-weight:800;
  margin-left:6px;
}

.plan-tag{
  margin-top:8px;
  color:rgba(255,255,255,.78);
  font-weight:800;
  font-size:.92rem;
}

.plan-list{
  list-style:none;
  padding:14px 0 16px;
  margin:0;
  display:grid;
  gap:10px;
}

.plan-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(255,255,255,.90);
  font-weight:700;
  line-height:1.35;
}

.plan-list i{
  margin-top:2px;
  color:rgba(96,165,250,.95);
}

/* Featured (PRO) */
.plan-card.featured{
  border-color:rgba(239,68,68,.35);
  background:
    radial-gradient(500px 240px at 80% 0%, rgba(239,68,68,.20), transparent 60%),
    radial-gradient(500px 240px at 10% 10%, rgba(37,99,235,.18), transparent 55%),
    rgba(255,255,255,.05);
  transform: translateY(-4px);
}

.plan-card.featured:hover{
  transform: translateY(-8px);
}

.ribbon{
  position:absolute;
  top:14px;
  right:14px;
  font-weight:900;
  font-size:.78rem;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(239,68,68,.16);
  border:1px solid rgba(239,68,68,.35);
  color:rgba(255,255,255,.92);
}

/* FAQ */
.plans-faq{
  margin-top:26px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:22px;
  padding:18px;
}

.faq-title{
  margin:0 0 12px;
  font-weight:900;
}

.faq-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}

.faq-item{
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.18);
}

.faq-q{font-weight:900}
.faq-a{margin-top:6px;color:var(--muted);font-weight:700;line-height:1.45}

/* CTA */
.plans-cta{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  padding:16px 18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(700px 220px at 15% 50%, rgba(37,99,235,.18), transparent 60%),
    radial-gradient(700px 220px at 85% 40%, rgba(239,68,68,.16), transparent 60%),
    rgba(255,255,255,.04);
}

.cta-title{font-weight:900;font-size:1.05rem}
.cta-sub{color:var(--muted);font-weight:700;margin-top:4px}

/* Responsive */
@media(max-width: 992px){
  .plans-hero-grid{grid-template-columns:1fr; }
  .plans-grid{grid-template-columns:1fr; }
  .faq-grid{grid-template-columns:1fr;}
  .plan-card.featured{transform:none}
}
/* ===================================
   PLANES PROCA CORPORACION
=================================== */

/* container fix solo para planes */
.plans-hero .container,
.plans-wrap .container{
max-width:1200px;
margin:auto;
padding-left:20px;
padding-right:20px;
}

/* HERO */

.plans-hero{
padding:70px 0 40px;
background:
radial-gradient(circle at 20% 10%, rgba(37,99,235,.4), transparent 60%),
radial-gradient(circle at 80% 20%, rgba(239,68,68,.35), transparent 60%),
linear-gradient(180deg,#070b14,#060914);
}

.plans-hero-grid{
display:grid;
grid-template-columns:1.15fr .85fr;
gap:40px;
align-items:center;
}

/* pill */
.pill{
display:inline-flex;
align-items:center;
gap:8px;
padding:8px 14px;
border-radius:999px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.12);
font-weight:800;
white-space:nowrap;
}

/* title */
.plans-title{
font-size:clamp(2rem,4vw,3rem);
font-weight:900;
margin-top:16px;
margin-bottom:14px;
}

.plans-sub{
color:var(--muted);
max-width:600px;
font-size:1.05rem;
}

/* buttons */

.plans-actions{
display:flex;
gap:12px;
margin-top:20px;
flex-wrap:wrap;
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:8px;
}

/* side card */

.side-card{
background:rgba(255,255,255,.05);
border-radius:20px;
padding:28px;
border:1px solid rgba(255,255,255,.12);
backdrop-filter:blur(12px);
box-shadow:0 15px 60px rgba(0,0,0,.4);
}

.side-top{
display:flex;
gap:14px;
align-items:center;
margin-bottom:16px;
}

.side-ic{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
background:rgba(37,99,235,.2);
}

.side-list{
display:grid;
gap:10px;
}

.side-item{
display:flex;
gap:10px;
align-items:center;
font-weight:700;
}

/* PLAN GRID */

.plans-wrap{
padding:60px 0;
background:linear-gradient(180deg,#060914,#05070c);
}

.plans-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:25px;
}

/* card */

.plan-card{
background:rgba(255,255,255,.05);
border-radius:20px;
padding:24px;
border:1px solid rgba(255,255,255,.1);
transition:.3s;
}

.plan-card:hover{
transform:translateY(-6px);
}

.plan-name{
font-weight:900;
font-size:1.1rem;
}

.plan-price{
font-size:2rem;
font-weight:900;
margin-top:8px;
}

.plan-price span{
font-size:.9rem;
color:var(--muted);
}

.plan-tag{
margin-top:6px;
font-weight:700;
color:var(--muted);
}

.plan-list{
margin-top:14px;
display:grid;
gap:10px;
}

.plan-list li{
display:flex;
gap:10px;
font-weight:600;
}

/* FEATURED */

.plan-card.featured{
border-color:rgba(239,68,68,.5);
transform:scale(1.05);
background:
radial-gradient(circle at top right, rgba(239,68,68,.25), transparent),
rgba(255,255,255,.06);
}

.ribbon{
position:absolute;
right:15px;
top:15px;
background:rgba(239,68,68,.2);
border:1px solid rgba(239,68,68,.5);
padding:6px 12px;
border-radius:20px;
font-size:.8rem;
font-weight:800;
}

/* FAQ */

.plans-faq{
margin-top:30px;
background:rgba(255,255,255,.04);
padding:25px;
border-radius:20px;
border:1px solid rgba(255,255,255,.08);
}

.faq-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.faq-item{
background:rgba(0,0,0,.2);
padding:14px;
border-radius:14px;
}

.faq-q{
font-weight:800;
}

.faq-a{
margin-top:5px;
color:var(--muted);
}

/* CTA */

.plans-cta{
margin-top:30px;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
background:rgba(255,255,255,.05);
padding:20px;
border-radius:20px;
}

/* RESPONSIVE */

@media(max-width:992px){

.plans-hero-grid{
grid-template-columns:1fr;
}

.plans-grid{
grid-template-columns:1fr;
}

.faq-grid{
grid-template-columns:1fr;
}

.plan-card.featured{
transform:none;
}

}
