/* ============================================
   PROTEKIP - Nosotros
   ============================================ */

/* ---- Bloque origen / misión ---- */

.protekip-origen-section {
  background: transparent;
  padding: 56px 0;
  margin-bottom: 10px;
}

.protekip-origen-grid {
  display: flex;
  align-items: stretch;
}

.protekip-origen-col {
  flex: 1;
  text-align: center;
}

.protekip-origen-divider {
  width: 1px;
  flex-shrink: 0;
  margin: 0 48px;
  background: linear-gradient(to bottom, transparent 0%, #3a3a3a 15%, #3a3a3a 85%, transparent 100%);
}

.protekip-origen-content h2,
.protekip-origen-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 18px;
  line-height: 1.1;
  display: inline-block;
  padding-left: 14px;
  border-left: 4px solid var(--seif-red);
}

.protekip-origen-content p,
.protekip-origen-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #999999;
  line-height: 1.75;
  margin: 0 0 12px;
}

.protekip-origen-text:last-child {
  margin-bottom: 0;
}

/* ---- Video section ---- */

.protekip-video-section {
  background: transparent;
  padding: 0 30px 100px 0;
}

.protekip-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
}

.protekip-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .protekip-origen-section {
    padding: 36px 0;
  }

  .protekip-origen-grid {
    flex-direction: column;
    gap: 32px;
  }

  .protekip-origen-divider {
    width: 60%;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(to right, transparent 0%, #3a3a3a 20%, #3a3a3a 80%, transparent 100%);
  }

  .protekip-video-section {
    padding: 36px 0;
  }
}

/* ---- Bloque de estadísticas ---- */

.protekip-stats-section {
  background: #1c1c1c;
  padding: 10px 0;
  margin-bottom: 10px;
}

.protekip-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

/* Separadores entre celdas */
.protekip-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid #0a0a0a;
  border-bottom: 1px solid #0a0a0a;
  gap: 8px;
}

.protekip-stat-item:last-child {
  border-right: none;
}

.protekip-stat-item {
  border-bottom: none;
}

.protekip-stat-item::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background-color: var(--seif-red);
  margin: 12px auto 0;
}

/* Número / identificador grande */
.protekip-stat-number {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 4rem;
  color: #cccccc;
  line-height: 1;
  letter-spacing: -1px;
}

/* Descripción debajo del número */
.protekip-stat-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #bbbbbb;
  line-height: 1.4;
  max-width: 200px;
}

/* ---- Bloque de features con ícono ---- */

.protekip-features-section {
  background: transparent;
  padding: 56px 0;
  margin-bottom: 10px;
}

.protekip-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.protekip-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.protekip-feature-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--seif-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.protekip-feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: #ffffff;
}

.protekip-feature-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #bbbbbb;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .protekip-features-section {
    padding: 36px 0;
  }

  .protekip-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}

@media (max-width: 480px) {
  .protekip-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Responsive stats ---- */
@media (max-width: 768px) {
  .protekip-stats-section {
    padding: 18px 0;
  }

  .protekip-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .protekip-stat-item {
    padding: 16px 8px;
    gap: 4px;
  }

  .protekip-stat-number {
    font-size: 1.3rem;
    letter-spacing: 0;
  }

  .protekip-stat-desc {
    font-size: 0.65rem;
    line-height: 1.3;
  }
}

/* Los estilos base del banner están en page-inicio.css */

/* ---- Bloque de sectores/aplicaciones ---- */

.protekip-sectores-section {
  background: #1c1c1c;
  margin-bottom: 10px;
}

.protekip-sector-item {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #0a0a0a;
  height: 115px;
  overflow: hidden;
}

.protekip-sector-item:last-child {
  border-bottom: none;
}

.protekip-sector-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 28px;
}

.protekip-sector-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border: 1px solid #3a3a3a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
}

.protekip-sector-icon svg {
  width: 26px;
  height: 26px;
  stroke: #bbbbbb;
}

.protekip-sector-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 6px;
  line-height: 1.2;
}

.protekip-sector-desc {
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: #888888;
  line-height: 1.5;
  margin: 0;
}

.protekip-sector-image {
  width: 42%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.protekip-sector-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(to right, #111111, transparent);
  z-index: 1;
  pointer-events: none;
}

.protekip-sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .protekip-sector-item {
    height: 100px;
  }

  .protekip-sector-image {
    width: 38%;
  }

  .protekip-sector-content {
    gap: 12px;
    padding: 12px 14px;
  }

  .protekip-sector-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .protekip-sector-icon svg {
    width: 20px;
    height: 20px;
  }

  .protekip-sector-title {
    font-size: 0.8rem;
    margin-bottom: 3px;
  }

  .protekip-sector-desc {
    font-size: 0.72rem;
    line-height: 1.3;
  }
}


/* El banner ya es responsive con height: auto en page-inicio.css */