/* =================================================================
   SRM Systems — Estilos custom sobre el template Inotek
   ================================================================= */

:root {
  --srm-primary: #1053f3;
  --srm-primary-dark: #0a3fbf;
  --srm-dark: #061153;
  --srm-accent: #00d1b2;
  --srm-light: #f5f8ff;
}

/* --- Language switcher --- */
.lang-switcher { display: inline-flex; }
.lang-switcher .lang-link {
  color: #fff;
  background: rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.15);
}
.lang-switcher .lang-link:hover {
  background: var(--srm-primary);
  color: #fff;
  border-color: var(--srm-primary);
}
.lang-switcher .lang-link i { margin-right: 4px; }

/* --- Clientes/Brands --- */
.clients-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
}
.clients-section .sub-title-2 { color: var(--srm-primary); }
.client-card {
  background: #fff;
  border: 1px solid #e8ecf7;
  border-radius: 12px;
  padding: 28px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.client-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,83,243,0.04), rgba(0,209,178,0.04));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.client-card:hover {
  transform: translateY(-6px);
  border-color: var(--srm-primary);
  box-shadow: 0 14px 30px rgba(16,83,243,0.12);
}
.client-card:hover::before { opacity: 1; }
.client-card img {
  max-width: 100%;
  max-height: 70px;
  height: auto;
  filter: grayscale(20%);
  transition: filter 0.35s ease;
  position: relative;
  z-index: 1;
}
.client-card:hover img { filter: grayscale(0%); }

/* --- Footer custom --- */
.footer-description {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-newsletter {
  position: relative;
  margin-top: 14px;
}
.footer-newsletter .form-group {
  display: flex;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 4px;
}
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter button {
  background: var(--srm-primary);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.footer-newsletter button:hover { background: var(--srm-primary-dark); }
.footer-newsletter-text {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 500;
}
.badge-item i { color: var(--srm-accent); font-size: 12px; }

/* --- Servicio: cards --- */
.service-card-srm {
  background: #fff;
  border: 1px solid #e8ecf7;
  border-radius: 16px;
  padding: 36px 28px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card-srm::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(16,83,243,0.08), transparent 70%);
  transform: translate(30%, -30%);
  transition: transform 0.5s ease;
}
.service-card-srm:hover {
  border-color: var(--srm-primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(16,83,243,0.1);
}
.service-card-srm:hover::after { transform: translate(10%, -10%) scale(1.3); }
.service-card-srm .service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--srm-primary), var(--srm-accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  margin-bottom: 22px;
}
.service-card-srm h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--srm-dark);
  margin-bottom: 14px;
}
.service-card-srm p {
  color: #5a6280;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card-srm .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--srm-primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.service-card-srm .service-link:hover { gap: 14px; }

/* --- Price cards --- */
.hosting-plans { padding: 100px 0; background: #f5f8ff; }
.plan-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
}
.plan-card.featured {
  border-color: var(--srm-primary);
  transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(16,83,243,0.18);
}
.plan-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(16,83,243,0.12); }
.plan-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--srm-primary), var(--srm-accent));
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.plan-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--srm-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.plan-price {
  font-size: 44px;
  font-weight: 800;
  color: var(--srm-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.plan-price sup { font-size: 22px; vertical-align: super; }
.plan-period { font-size: 13px; color: #8a90a8; margin-bottom: 24px; }
.plan-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.plan-features li {
  padding: 8px 0;
  font-size: 14px;
  color: #4a5070;
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li i { color: var(--srm-accent); font-size: 14px; }

/* --- Page header (breadcrumb) --- */
.page-header {
  background: linear-gradient(135deg, var(--srm-dark), #0a2180);
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(16,83,243,0.3) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,209,178,0.2) 0, transparent 40%);
}
.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  position: relative;
  margin: 0 0 14px;
}
.page-header .breadcrumb-nav {
  position: relative;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.page-header .breadcrumb-nav a { color: #fff; text-decoration: none; }
.page-header .breadcrumb-nav a:hover { color: var(--srm-accent); }
.page-header .breadcrumb-nav span.sep { opacity: 0.5; }

/* --- Secciones con padding consistente --- */
.srm-section { padding: 90px 0; }
.srm-section-sm { padding: 60px 0; }

/* --- Responsive --- */
@media (max-width: 991px) {
  .page-header { padding: 100px 0 50px; }
  .page-header h1 { font-size: 34px; }
  .plan-card.featured { transform: scale(1); }
  .plan-card.featured:hover { transform: translateY(-8px); }
}

/* --- Cliente grid en página dedicada --- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.clients-grid .client-card { min-height: 130px; }
