/* ============================================
   Smart Systems IT — Custom CSS
   Paleta: #0A2540 navy | #0E6BFF blue | #00D9A3 green
   ============================================ */

/* Fuentes */
.font-space { font-family: 'Space Grotesk', sans-serif; }
.font-inter  { font-family: 'Inter', sans-serif; }

/* Colores de marca */
:root {
  --ss-navy:   #0A2540;
  --ss-blue:   #0E6BFF;
  --ss-green:  #00D9A3;
  --ss-cyan:   #29B6F6;
  --ss-dark:   #10131A;
  --ss-gray:   #6B7280;
  --ss-light:  #F3F6FA;
}

/* Navbar */
.navbar.bg-primary { background-color: var(--ss-navy) !important; }

/* Brand heading colors */
.text-fondo { color: var(--ss-navy); }

/* Botón Mesa de Ayuda */
.btn-helpdesk {
  background: linear-gradient(135deg, var(--ss-blue), #0052cc);
  color: #fff !important;
  border: none;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}
.btn-helpdesk:hover {
  background: linear-gradient(135deg, #0052cc, #003d99);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14,107,255,0.35);
}

/* Cards genéricas */
.shadow-card {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: none;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.shadow-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* Imágenes card */
.card-img-top { border-radius: 12px 12px 0 0; object-fit: cover; height: 180px; }

/* Íconos svg */
.h-60px { height: 60px; }
.icon-25 { width: 25px; height: 25px; }

/* Badge de sección */
.section-label {
  display: inline-block;
  background: var(--ss-blue);
  color: #fff;
  padding: 4px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-label.green { background: var(--ss-green); }

/* Stats */
.stat-card {
  text-align: center; padding: 28px 20px;
  background: #fff; border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.stat-card .stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  color: var(--ss-blue);
  line-height: 1;
  font-weight: 700;
}
.stat-card .stat-label { color: var(--ss-gray); font-size: 0.85rem; margin-top: 6px; }

/* Gradient text IT badge */
.it-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--ss-blue), var(--ss-green));
  color: #fff;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 8px;
  font-size: 0.85em;
  vertical-align: middle;
  margin-left: 6px;
}

/* WhatsApp float btn */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover { color: #fff; transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }

/* brand-badge (reutilizado en cctv y tecnologia) */
.brand-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:#f3f6fa; border:1px solid #e2e8f0;
  padding:10px 20px; border-radius:12px;
  font-weight:600; color:#0A2540; font-size:0.88rem;
  transition:all 0.2s;
}
.brand-badge:hover { background:#e8f0fe; border-color:#0E6BFF; color:#0E6BFF; }
