/* ===================== EVENTOS INTERNACIONALES ===================== */

/* ---- Hero propio ---- */
.ei-hero {
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.7) 100%),
    url('../img/internacionales/hero-msw.webp');
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
}

.ei-hero-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  opacity: 0.9;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 24px rgba(46,123,214,0.4));
}

/* ---- Stats strip ---- */
.ei-stats-strip {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.ei-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.ei-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}

.ei-stat-num {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ei-stat-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.ei-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ---- Op. Simferopol ---- */
.ei-op-section {
  padding: 80px 0;
}

/* Grid dos columnas: texto | vídeo */
.ei-op-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: stretch;
}

.ei-op-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin: 8px 0 16px;
  line-height: 1.05;
}

/* Bloque organizadores */
.ei-organizer-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.ei-organizer-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.ei-msw-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.9;
}

.ei-organizer-names {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.ei-organizer-names span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  padding: 3px 10px;
}

/* Bloque "Qué es MSW" */
.ei-msw-about {
  background: rgba(46,123,214,0.06);
  border: 1px solid rgba(46,123,214,0.15);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.ei-msw-about p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0;
}

.ei-msw-about strong {
  color: #fff;
}

/* Texto escenario táctico */
.ei-scenario-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  border-left: 3px solid var(--red);
  padding-left: 20px;
  margin: 20px 0 0;
  font-style: italic;
}

/* ---- Vídeo local ---- */
.ei-video-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.07);
  min-height: 320px;
}

.ei-video-wrap video,
.ei-video-wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Encabezados de sección ---- */
.ei-section-head {
  text-align: center;
  margin-bottom: 48px;
}

.ei-section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin: 8px 0 0;
}

/* ---- Bandos ---- */
.ei-bandos-section {
  padding: 80px 0;
}

.ei-bandos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ei-bando {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px 24px;
  border-top: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ei-bando:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.ei-bando--nato  { border-top-color: #2e7bd6; }
.ei-bando--rusfor { border-top-color: #c42a1a; }
.ei-bando--milicia { border-top-color: #8a7f3a; }

.ei-bando-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
}

.ei-bando-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.1);
  letter-spacing: -0.04em;
}

.ei-bando--nato  .ei-bando-num { color: rgba(46,123,214,0.25); }
.ei-bando--rusfor .ei-bando-num { color: rgba(196,42,26,0.25); }
.ei-bando--milicia .ei-bando-num { color: rgba(138,127,58,0.25); }

.ei-bando-header h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.06em;
}

.ei-bando--nato   .ei-bando-header h3 { color: #5a9ee8; }
.ei-bando--rusfor .ei-bando-header h3 { color: #e05d4e; }
.ei-bando--milicia .ei-bando-header h3 { color: #c4b86a; }

.ei-bando-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0 0 18px;
}

.ei-bando-loadout {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}

.ei-bando-loadout li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.ei-bando--nato   .ei-bando-loadout li i { color: #2e7bd6; }
.ei-bando--rusfor .ei-bando-loadout li i { color: #c42a1a; }
.ei-bando--milicia .ei-bando-loadout li i { color: #8a7f3a; }

/* ---- MSW Cadre ---- */
.ei-cadre-section {
  padding: 80px 0;
}

.ei-cadre-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 16px auto 0;
}

.ei-cadre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.ei-cadre-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ei-cadre-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.5);
}

.ei-cadre-card--cmd {
  border-color: rgba(255,215,0,0.2);
  background: rgba(255,215,0,0.03);
}

.ei-cadre-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
}

.ei-cadre-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.ei-cadre-card:hover .ei-cadre-img-wrap img {
  transform: scale(1.04);
}

.ei-cadre-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  color: #fff;
}

.ei-cadre-badge--nato   { background: #2e7bd6; }
.ei-cadre-badge--rusfor { background: #c42a1a; }
.ei-cadre-badge--milicia { background: #6b6128; }

.ei-cadre-info {
  padding: 12px 12px 14px;
}

.ei-cadre-info h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
  line-height: 1.2;
}

.ei-cadre-role {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
}

.ei-cadre-card--cmd .ei-cadre-info h4 {
  color: #ffd700;
}

/* ---- CTA ---- */
.ei-cta-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 32px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .ei-op-grid {
    grid-template-columns: 1fr;
  }

  .ei-video-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

  .ei-bandos-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .ei-organizer-wrap {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .ei-stat {
    padding: 12px 24px;
  }

  .ei-stat-sep {
    display: none;
  }

  .ei-stats {
    gap: 8px;
  }

  .ei-cadre-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
