/* Heredamos el estilo de la tarjeta */
.aliados-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin: 30px 0;
  border: 1px solid #f0f0f0;
}

/* El botón con tu estilo de marca */
.btn-aliados-trigger {
  background-color: #5c3e35;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.2s ease,
    background 0.3s ease;
  margin-top: 10px;
}

.btn-aliados-trigger:hover {
  background-color: #284d98;
  transform: translateY(-2px);
}

/* Decoración lado derecho (similar al mapa) */
.aliados-decor {
  flex: 1;
  min-width: 300px;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
  color: #f0f0f0;
}

/* --- ESTILOS DEL MODAL --- */
.modal-aliados {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}

.modal-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}
