:root{
  --blue-dark:#0b2c5f;
  --blue-main:#114fa3;
  --blue-light:#eaf2ff;
  --orange:#ff9f1a;
  --text:#1f2d3d;
  --muted:#6c7a89;
}

body{
  font-family:Poppins,sans-serif;
  color:var(--text);
}

/* TOP BAR */
.top-bar{
  background:#0a2558;
  padding:6px 20px;
  text-align:right;
}
.top-bar a{ color:#fff; font-size:12px; text-decoration:none; }

/* NAV */


/* Control del logo en el navbar */
.nav-logo {
    height: 70px; /* Ajusta este valor según prefieras el tamaño */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .nav-logo {
    transform: scale(1.05); /* Efecto sutil al pasar el mouse */
}

/* Alineación para que el logo no toque los bordes en móviles */
@media (max-width: 991px) {
    .nav-logo {
        height: 30px; /* Un poco más chico en celulares */
    }
}

.main-navbar{
  background:linear-gradient(180deg,#0f3c78,#0b2c5f);
 
}

.main-navbar .nav-link.active{
  color: #fff;
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}


/* Blindaje para el botón VER TODAS del mega menú */
.btn-mega {
    display: inline-block !important;
    background-color: #3498db !important; /* El azul de tu marca */
    color: #ffffff !important;
    padding: 8px 24px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: none !important;
    transition: background 0.3s ease !important;
}

.btn-mega:hover {
    background-color: #2980b9 !important; /* Un azul un poco más oscuro al pasar el mouse */
}


/* HERO */
.hero{
  background:linear-gradient(135deg,#1a4f9c,#0b2c5f);
  padding:90px 0;
  color:#fff;
}
.hero h1{ font-size:42px; }
.hero-mock{
  height:340px;
  background:rgba(255,255,255,.12);
  border-radius:16px;
}

/* INTRO */
.section-intro{
  text-align:center;
  padding:80px 20px 40px;
}
.section-intro h2{ color:var(--blue-dark); }

/* ===== Features principales (3 en línea) ===== */

.features-main{
  padding: 40px 0 60px;
}

.feature-card{
  background: #fff;
  border-radius: 14px;
  padding: 34px 26px;
  height: 100%;
  box-shadow: 0 12px 32px rgba(11,44,95,.08);
  border: 1px solid rgba(11,44,95,.08);
}

.feature-card h5{
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.feature-card p{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.feature-icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: rgba(17,79,163,.10);
  color: var(--blue-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.feature-link{
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-main);
  text-decoration: none;
}

.feature-link:hover{
  text-decoration: underline;
}


/* EXTRA FEATURES */
.extra-features{
  background:#f7fbff;
  padding:60px 0;
}
.mini-card{
  background:#fff;
  padding:25px;
  border-radius:10px;
  text-align:center;
}
.all-features{
  font-size:13px;
  color:var(--blue-main);
  text-decoration:underline;
}

.mini-card{
  background:#fff;
  border-radius:14px;
  padding:28px 24px 30px;
  text-align:center;
  height:100%;
  border:1px solid rgba(11,44,95,.08);
  box-shadow:0 10px 30px rgba(11,44,95,.06);
}

.mini-icon{
  width:56px;
  height:56px;
  margin:0 auto 16px;
  border-radius:16px;
  background:rgba(17,79,163,.10);
  color:var(--blue-main);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.mini-card h6{
  font-size:14px;
  font-weight:600;
  color:var(--blue-dark);
  margin-bottom:10px;
}

.mini-card p{
  font-size:12.5px;
  color:var(--muted);
  line-height:1.55;
  margin-bottom:12px;
}

.mini-link{
  font-size:12.5px;
  font-weight:500;
  color:var(--blue-main);
  text-decoration:none;
}

.mini-link:hover{
  text-decoration:underline;
}



/* ===== Mega Menu Ultra-Compacto (Optimizado para pantallas chicas) ===== */

/* Estructura base */
.mega-dropdown { position: static; }

.mega-menu {
  width: 100vw;
  left: 0 !important;
  right: 0 !important;
  top: 100% !important;
  margin-top: 0;
  padding: 10px 0; /* Menos aire arriba y abajo */
  border: 0;
  background: transparent;
  z-index: 2000;
}

/* Tarjeta contenedora centrada */
.mega-surface {
  width: min(900px, calc(100vw - 24px)); /* Un poco más angosta para centrar la vista */
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,.15);
  border: 1px solid rgba(11,44,95,.08);
}

/* Columna izquierda (Imagen/Azul) - ACHICADA */
.mega-left {
  position: relative;
  min-height: 240px !important; /* Altura reducida drásticamente */
  background: 
    linear-gradient(90deg, rgba(11,44,95,.95), rgba(11,44,95,.75)),
    url("../assets/img/mega-bg.jpg"); 
  background-size: cover;
  background-position: center;
}

.mega-left-overlay {
  position: absolute;
  inset: 0;
  padding: 25px; /* Menos padding interno */
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.mega-left-overlay h3 {
  margin: 0;
  font-size: 22px !important; /* Texto más pequeño para la nueva altura */
  line-height: 1.2;
  font-weight: 600;
}

/* Contenido derecha (Links) - COMPACTO */
.mega-right { 
  padding: 20px 30px !important; 
}

.mega-title {
  font-size: 11px; /* Título más discreto */
  font-weight: 700;
  color: #0b2c5f;
  margin-bottom: 8px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Links juntos (Eliminamos el "aire" entre renglones) */
.mega-link {
  display: block;
  padding: 2px 0 !important; /* Espacio mínimo entre ítems */
  font-size: 12.5px;
  color: #444;
  text-decoration: none;
  line-height: 1.3;
  transition: all 0.2s ease;
}

.mega-link:hover {
  color: #3498db;
  padding-left: 4px;
  text-decoration: none;
}

/* Botón VER TODAS - Ajustado */
.btn-mega {
  background: #3498db; /* Azul destacado */
  color: #fff !important;
  border-radius: 5px;
  padding: 6px 16px !important; /* Botón más bajo */
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  border: 0;
  display: inline-block;
  margin-top: 12px !important;
  transition: all 0.2s;
}

.btn-mega:hover { 
  filter: brightness(1.1); 
  transform: translateY(-1px);
}

/* Limpieza de bordes Bootstrap */
.dropdown-menu.mega-menu { border-radius: 0; }

/* ===== CTA 30 ===== */
.cta-30{
  background: #1777b8;
  padding: 48px 0;
  color: #fff;
}

.cta-30-title{
  margin: 0;
  font-size: 28px;
  font-weight: 600;
}

.cta-30-form .form-control{
  height: 44px;
  border-radius: 999px;
  border: 0;
  padding: 10px 14px;
  font-size: 13px;
}

.btn-cta-orange{
  height: 44px;
  border-radius: 999px;
  padding: 0 24px;
  background: #ff9f1a;
  border: 0;
  color: #1b1b1b;
  letter-spacing: .12em;
  font-size: 11px;
}

/* ===== Footer ===== */
.sv-footer{
  background: #0a1f4a;
  color: rgba(255,255,255,.85);
  padding: 54px 0 18px;
}

.sv-footer-title{
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 14px;
}

.sv-footer-link{
  display: block;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 12px;
  margin-bottom: 10px;
}

.sv-footer-link:hover{ color:#fff; }

.sv-footer-top{
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.sv-footer-bottom{
  padding-top: 18px;
}

.sv-footer-copy{
  font-size: 12px;
  opacity: .75;
}

.sv-social{
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;
}

.sv-social:hover{ color:#fff; }

.sv-fab-up{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0a1f4a;
  text-decoration: none;
  font-weight: 900;
}

/* ===== Sticky bottom bar (siempre visible) ===== */
:root{
  --stickybar-h: 64px;
}

.sv-stickybar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #0f2d63;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 10px 0;
}

.sv-stickybar-inner{
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.sv-stickbtn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0,0,0,.20);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sv-stickbtn:hover{
  filter: brightness(.95);
  color:#fff;
}

.sv-stickico{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  font-size: 12px;
}

/* Clave: reservar espacio abajo para que la barra fija NO tape contenido */
body{
  padding-bottom: var(--stickybar-h);
}

/* En pantallas chicas, que no quede gigantesca */
@media (max-width: 576px){
  :root{ --stickybar-h: 96px; }
  .sv-stickbtn{ width: 100%; justify-content: center; }
  .sv-stickybar-inner{ gap: 10px; }
}


:root{
  --stickybar-h: 64px;
}

/* Barra fija inferior */
.sv-stickybar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #0f2d63;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 10px 0;
}

.sv-stickybar-inner{
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.sv-stickbtn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0,0,0,.20);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sv-stickbtn:hover{
  filter: brightness(.95);
  color:#fff;
}

.sv-stickico{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  font-size: 12px;
}

/* Reserva espacio para que no tape el contenido */
body{
  padding-bottom: var(--stickybar-h);
}

/* Mobile */
@media (max-width: 576px){
  :root{ --stickybar-h: 96px; }
  .sv-stickbtn{ width: 100%; justify-content: center; }
  .sv-stickybar-inner{ gap: 10px; }
}


/* =========================
   Funcionalidad: Ventas y Presupuestos (look actual)
   ========================= */

	.func-vp .vp-hero{
	  position: relative;
	  min-height: 330px;
	  display: flex;
	  align-items: center;
	  text-align: center;

	 
	 background-image: url("../img/mockup-sv-header-2.jpg");

	  background-size: cover;
	  background-position: center;
	  background-repeat: no-repeat;
	}

	.func-vp .vp-hero-overlay{
	  position: absolute;
	  inset: 0;
	  background: rgba(10, 31, 74, 0.72);
	}

	.func-vp .vp-hero-inner{
	  position: relative;
	  z-index: 1;
	  padding: 56px 0 62px;
	}

	.func-vp .vp-hero h1{
	  margin: 0 0 10px;
	  color: #fff;
	  font-weight: 300;
	  font-size: 52px;
	  letter-spacing: .02em;
	}

	.func-vp .vp-hero p{
	  margin: 0 auto;
	  max-width: 720px;
	  color: rgba(255,255,255,.85);
	  font-size: 14px;
	  line-height: 1.7;
	}

/* grid */
.func-vp .vp-grid{
  padding: 56px 0 70px;
  background: #fff;
}

.func-vp .vp-item{
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}

.func-vp .vp-mark{
  width: 36px;
  height: 14px;
  margin: 0 auto 14px;
  opacity: .85;

  /* “símbolo” tipo el que se ve en tu captura (línea + puntos) */
  background:
    radial-gradient(circle, #0b2c5f 2px, transparent 3px) 0 50%/10px 10px no-repeat,
    radial-gradient(circle, #0b2c5f 2px, transparent 3px) 100% 50%/10px 10px no-repeat,
    linear-gradient(#0b2c5f, #0b2c5f) 50% 50%/calc(100% - 20px) 1px no-repeat;
}

.func-vp .vp-item h3{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  color: #0a1f4a;
}

.func-vp .vp-item p{
  margin: 0;
  font-size: 12.5px;
  color: #6c7a89;
  line-height: 1.75;
}

.func-vp .vp-link{
  color: #0b2c5f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* CTA violeta (override de la CTA azul) */
.cta-30.cta-30--purple{
  background: #8e4bb8; /* violeta similar al actual */
}

.cta-30.cta-30--purple .cta-30-title{
  color: #fff;
  font-weight: 400;
}

/* responsive hero */
@media (max-width: 576px){
  .func-vp .vp-hero h1{ font-size: 34px; }
  .func-vp .vp-grid{ padding: 42px 0 60px; }
}

/* SVG icons */
.sv-icon{
  width: 46px;
  height: 46px;
  fill: #0b2c5f;
}

.feature-icon,
.mini-icon{
  display:flex;
  align-items:center;
  justify-content:center;
}

.mini-icon .sv-icon{
  width: 30px;
  height: 30px;
}


/* Stickybar icon SVG */
.sv-stickico{
  width: 18px;
  height: 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 18px;
}

.sv-sticksvg{
  width: 100%;
  height: 100%;
  fill: #fff; /* iconos blancos sobre barra */
  display:block;
}

/* =====================================================
   CRM page body
   ===================================================== */

.func-crm .crm-body{
  padding: 56px 0 70px;
  background: #fff;
}

.func-crm .crm-content{
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.func-crm .crm-item{
  margin: 0 auto 34px;
  max-width: 720px;
}

.func-crm .crm-item h3{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  color: #0a1f4a;
}

.func-crm .crm-item p{
  margin: 0;
  font-size: 12.5px;
  color: #6c7a89;
  line-height: 1.8;
}

.func-crm .crm-actions{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}


/* Iconos SVG en cards de funcionalidades */
.vp-item .vp-ico{
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vp-item .vp-ico-svg{
  width: 100%;
  height: 100%;
  fill: #0b2c5f; /* azul corporativo */
  opacity: .95;
}


/* =====================================================
   Pedido Online – estructura original (2 zonas + 2x2)
   ===================================================== */

.func-pedido-online .po-zones{
  background: #f3f6f9;
}

.func-pedido-online .po-zones .col-lg-6{
  text-align: center;
}

.func-pedido-online .po-title{
  font-size: 40px;
  line-height: 1.15;
  font-weight: 300;
  color: #2f3a45;
  margin: 0 auto 16px;
  max-width: 420px;
}

.func-pedido-online .po-text{
  color: #7b8896;
  font-size: 13px;
  line-height: 1.9;
  margin: 0 auto;
  max-width: 420px;
}

@media (max-width: 991px){
  .func-pedido-online .po-title{
    font-size: 32px;
  }
}



.func-pedido-online .po-illustration{
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: #dff3ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.func-pedido-online .po-illu-svg{
  width: 210px;
  height: 210px;
  fill: none;
  stroke: #0b2c5f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .95;
}

.func-pedido-online .po-illu-bg{
  fill: transparent;
  stroke: transparent;
}

/* Features */
.func-pedido-online .po-features{
  padding: 56px 0 70px;
  background: #fff;
}

.func-pedido-online .po-feature{
  text-align: center;
  padding: 14px 10px;
}

.func-pedido-online .po-feature-mark{
  height: 16px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.func-pedido-online .po-mark-svg{
  width: 58px;
  height: 12px;
  fill: none;
  stroke: #0b2c5f;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .95;
}

.func-pedido-online .po-mark-svg circle{
  fill: #0b2c5f;
}

.func-pedido-online .po-feature h3{
  font-size: 14px;
  font-weight: 500;
  color: #0a1f4a;
  margin: 0 0 10px;
}

.func-pedido-online .po-feature p{
  font-size: 12px;
  color: #7b8896;
  line-height: 1.9;
  margin: 0 auto;
  max-width: 520px;
}

@media (max-width: 991px){
  .func-pedido-online .po-zones .row{
    text-align: center;
  }
  .func-pedido-online .po-text{
    margin: 0 auto;
  }
  .func-pedido-online .po-title{
    font-size: 32px;
  }
}

/* Pedido Offline – 3 columnas limpias y centradas */
.func-pedido-offline .po3-zones{
  background: #f3f6f9;
}

.func-pedido-offline .po3-title{
  font-size: 34px;
  line-height: 1.15;
  font-weight: 300;
  color: #2f3a45;
  margin: 0 auto 14px;
  max-width: 360px;
}

.func-pedido-offline .po3-text{
  color: #7b8896;
  font-size: 13px;
  line-height: 1.9;
  margin: 0 auto;
  max-width: 360px;
}

@media (max-width: 991px){
  .func-pedido-offline .po3-title{
    font-size: 30px;
  }
}

/* =========================================
   Precios y Planes (clon del layout original)
   ========================================= */

.sv-precios .price-hero{
  background: linear-gradient(180deg, #0b2c5f 0%, #0a1f4a 100%);
  padding: 56px 0 52px;
  text-align: center;
}
.sv-precios .price-hero h1{
  margin: 0 0 10px;
  color: #fff;
  font-weight: 300;
  font-size: 46px;
  letter-spacing: .01em;
}
.sv-precios .price-hero p{
  margin: 0 auto;
  max-width: 920px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  line-height: 1.9;
}

.sv-precios .price-top{ padding: 22px 0 10px; }

.sv-precios .price-toggle{
  display: inline-flex;
  border: 1px solid rgba(11,44,95,.35);
  border-radius: 999px;
  overflow: hidden;
}
.sv-precios .price-pill{
  border: 0;
  background: #fff;
  color: #0b2c5f;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  min-width: 92px;
}
.sv-precios .price-pill + .price-pill{
  border-left: 1px solid rgba(11,44,95,.25);
}
.sv-precios .price-pill.is-active{
  background: #0b2c5f;
  color: #fff;
}
.sv-precios .price-note{
  margin: 12px 0 0;
  color: #7b8896;
  font-size: 12px;
}

.sv-precios .price-cards{ padding: 18px 0 44px; }

/* ===== Cards ===== */
.sv-precios .plan-card{
  border: 1px solid rgba(10,31,74,.08);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(10,31,74,.06);
  overflow: visible; /* importante: que no corte el badge */
  height: 100%;
}

.sv-precios .plan-head{
  position: relative;
  padding: 42px 18px 14px; /* aire para el badge */
  text-align: center;
}


.sv-precios .plan-head h3{
  margin: 0 0 12px;
  font-weight: 500;
  color: #2f3a45;
  font-size: 20px;
}

.sv-precios .plan-price{
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
  color: #2f3a45;
}
.sv-precios .plan-price small{
  font-size: 14px;
  opacity: .7;
}
.sv-precios .plan-price span{
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.sv-precios .plan-sub{
  font-size: 10px;
  color: #7b8896;
  letter-spacing: .02em;
}

/* Separador */
.sv-precios .plan-sep{
  margin: 0 18px 10px;
  border: 0;
  height: 1px;
  background: rgba(10,31,74,.12);
}

/* Lista */
.sv-precios .plan-list{
  list-style: none;
  margin: 0;
  padding: 0 18px 16px;
  font-size: 11px;
  color: #4a5662;
  line-height: 1.9;
}

/* LI: override anti "space-between" para tooltips */
.sv-precios .plan-list li{
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
  width: auto;
}

/* Puntitos */
.sv-precios .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 10px;
  position: relative;
  margin-right: 10px;
}
.sv-precios .dot-on{ background: #0b2c5f; }
.sv-precios .dot-plus{ background: #29b86f; }
.sv-precios .dot-plus:after{
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 99px;
  background: rgba(255,255,255,.95);
}

/* Texto + tooltip pegado (usar .item-text en HTML) */
.sv-precios .plan-list li .item-text{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Tooltip icon */
.sv-precios .tip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  cursor: help;
  user-select: none;

  border: 1px solid rgba(10,31,74,.25);
  color: rgba(10,31,74,.75);
  background: rgba(255,255,255,.7);

  margin-left: 0 !important; /* por si algún css le metió auto */
  flex: 0 0 auto;
}

/* CTA */
.sv-precios .plan-cta{ padding: 0 18px 18px; }
.sv-precios .plan-btn{
  width: 100%;
  border-radius: 4px;
  background: #ff8c00;
  color: #fff;
  font-weight: 800;
  letter-spacing: .06em;
  font-size: 11px;
  padding: 12px 12px;
}
.sv-precios .plan-btn:hover{
  color: #fff;
  filter: brightness(.98);
}

/* ===== Featured (Plan Plata) ===== */
.sv-precios .plan-card.is-featured{
  background: #0b2c5f;
  border-color: rgba(11,44,95,.35);
}
.sv-precios .plan-card.is-featured .plan-head h3,
.sv-precios .plan-card.is-featured .plan-price,
.sv-precios .plan-card.is-featured .plan-sub,
.sv-precios .plan-card.is-featured .plan-list{
  color: #fff;
}
.sv-precios .plan-card.is-featured .plan-sub{ color: rgba(255,255,255,.78); }
.sv-precios .plan-card.is-featured .dot-on{ background: rgba(255,255,255,.9); }
.sv-precios .plan-card.is-featured .plan-sep{ background: rgba(255,255,255,.22); }
.sv-precios .plan-card.is-featured .tip{
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.08);
}

/* Badge recomendado: arriba a la derecha, con aire */
.sv-precios .plan-recommended{
  position: absolute;
  right: 18px;     /* separación del borde derecho */
  top: 14px;       /* separación del borde superior */
  left: auto;
  transform: none;

  z-index: 2;
  display: inline-block;
  background: #27c93f;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(39,201,63,.22);
}

/* Bottom */
.sv-precios .price-bottom{ margin-top: 18px; }
.sv-precios .price-outline{
  border: 1px solid rgba(11,44,95,.55);
  color: #0b2c5f;
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 10px;
}
.sv-precios .price-support{
  margin: 16px 0 0;
  color: #7b8896;
  font-size: 12px;
}

/* ================================
   Atención al Cliente
================================ */

.sv-soporte .svc-hero{
  position: relative;
  background-image: url("../img/mockup-sv-header-2.jpg");
  background-size: cover;
  background-position: center;
}

.sv-soporte .svc-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,31,74,.85), rgba(64,203,210,.85));
}

.sv-soporte .svc-hero-inner{
  position: relative;
  z-index: 1;
  padding: 64px 0;
  color: #fff;
}

.svc-cards{
  padding: 56px 0 72px;
}

.svc-card{
  background: #fff;
  border-radius: 6px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(10,31,74,.08);
  height: 100%;
}

.svc-icon svg{
  width: 42px;
  height: 42px;
  stroke-width: 1.6;
  color: #0b2c5f;
  margin-bottom: 16px;
}

.svc-card h3{
  font-size: 16px;
  margin-bottom: 10px;
}

.svc-card p{
  font-size: 13px;
  color: #6b7785;
  line-height: 1.7;
}

.svc-btn{
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b2c5f;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
