/* =========================================
   VISTA 12 — BANCOS AURICOIN
   Banco Central Auricoin
   ========================================= */

.bancos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.bancos-tarjeta {
  display: flex;
  flex-direction: column;
  height: 240px;
  border: 1px solid var(--color-borde, #d4d4d4);
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.bancos-tarjeta:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.bancos-tarjeta--academia,
.bancos-tarjeta--academia .bancos-tarjeta__etiqueta {
  background: #000;
}

.bancos-tarjeta__etiqueta {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  padding: 0.5rem;
  letter-spacing: 0.5px;
}

.bancos-tarjeta__imagen {
  overflow: hidden;
}

.bancos-tarjeta__imagen img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.bancos-planificacion {
  margin-top: 3rem;
}

.bancos-planificacion h3,
.bancos-mundo h3 {
  font-size: 30px;
  font-family: inherit;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.bancos-mundo {
  margin-top: 2.5rem;
}

.bancos-mapa {
  margin: 2rem 0;
}

.bancos-mapa img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .bancos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .bancos-grid {
    grid-template-columns: 1fr;
  }
}
