/* ── UNIFORMES ───────────────────────────────────────────── */
.uniforms {
  background: var(--bg);
  padding: 5rem 0 4rem;
}
.uniforms-intro {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.8;
}
.uniforms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.uniform-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.uniform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.uniform-card:hover {
  border-color: rgba(242,183,5,.4);
  transform: translateY(-5px);
}
.uniform-icon {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}
.uniform-icon .lucide { width: 3rem; height: 3rem; color: var(--accent); }
.uniform-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .5rem;
}
.uniform-card .uniform-tag {
  font-family: var(--font-head);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.uniform-card p {
  margin-top: 1rem;
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── EQUIPAMIENTO OPERATIVO ──────────────────────────────── */
.equipment {
  background: var(--card);
  padding: 5rem 0;
  position: relative;
}
.equipment::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
}
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.equipment-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(14,14,14,.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.equipment-item:hover {
  border-color: rgba(242,183,5,.3);
  transform: translateX(4px);
}
.equipment-item .eq-icon .lucide {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--accent);
}
.equipment-item-text h4 {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--white);
  margin-bottom: .25rem;
}
.equipment-item-text p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CENTRO DE CONTROL ───────────────────────────────────── */
.control-center {
  background: var(--bg);
  padding: 5rem 0;
}
.control-center-inner {
  background: linear-gradient(135deg, #161616 0%, #1a1400 100%);
  border: 1px solid rgba(242,183,5,.3);
  border-radius: var(--radius);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.control-center-inner::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border: 35px solid rgba(242,183,5,.06);
  transform: rotate(45deg);
  border-radius: 8px;
}
.control-badge {
  flex-shrink: 0;
  text-align: center;
}
.control-badge .badge-icon {
  display: flex;
  justify-content: center;
  margin-bottom: .5rem;
}
.control-badge .badge-icon .lucide { width: 3rem; height: 3rem; color: var(--accent); }
.control-badge .badge-text {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.control-badge .badge-sub {
  font-family: var(--font-head);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.control-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}
.control-text h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 1rem;
}
.control-text h3 span { color: var(--accent); }
.control-text p {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.8;
}

/* ── TÓTEM DE SEGURIDAD ──────────────────────────────────── */
.totem-section {
  background: var(--card);
  padding: 5rem 0;
  position: relative;
}
.totem-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
}
.totem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.totem-text .section-header { margin-bottom: 0; }
.totem-text .section-label { align-self: flex-start; }
.totem-text .gold-line { margin: 1.25rem 0 1.5rem; }
.totem-text p {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.8;
}
.totem-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.totem-img-mobile { display: none; }
.totem-image img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: var(--radius);
  filter: drop-shadow(0 8px 32px rgba(242,183,5,.12));
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .uniforms-grid  { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr; }
  .control-center-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

  /* Tótem: imagen vertical a la izquierda que abarca toda la altura del texto */
  .totem-inner {
    grid-template-columns: 130px 1fr;
    gap: 2rem;
    align-items: stretch;
  }
  .totem-image {
    order: 1;
    height: 100%;
    min-height: 320px;
    justify-content: flex-start;
  }
  .totem-img-desktop { display: none; }
  .totem-img-mobile { display: block; }
  .totem-image img {
    width: 130px;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: left center;
  }
  .totem-text { order: 2; }
}
@media (max-width: 480px) {
  .totem-inner { grid-template-columns: 100px 1fr; }
  .totem-image { min-height: 280px; }
  .totem-image img { width: 100px; }
}
