/* ================================
   CONTENEDOR PRINCIPAL (PLUGIN MAPA)
================================= */
.bma-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px auto;
  max-width: 1100px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: "Poppins", sans-serif;
}

/* ================================
   COLUMNA IZQUIERDA (FORMULARIO)
================================= */
.bma-left {
  flex: 1;
  min-width: 320px;
  max-width: 450px;
}

.bma-left h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #235f35; /* Verde Bosque Urbano */
  font-weight: 600;
}

.bma-left label {
  display: block;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 5px;
  color: #333;
}

.bma-left input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: border 0.3s;
}

.bma-left input:focus {
  border-color: #235f35;
  outline: none;
}

.bma-left button {
  width: 100%;
  padding: 12px;
  background: #98c86b; /* 👈 Verde Bosque Urbano claro */
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s, transform 0.2s;
}

.bma-left button:hover {
  background: #97b58a; /* 👈 Verde más oscuro para hover */
  transform: scale(1.03); /* 👈 Efecto sutil */
}

/* ================================
   COLUMNA DERECHA (MAPA)
================================= */
#bma-map {
  flex: 2;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #eee;
}

/* ================================
   FALLBACK
================================= */
#bma-fallback {
  margin-top: 20px;
  padding: 15px;
  background: #f9f9f9;
  border: 1px dashed #ccc;
  border-radius: 10px;
}

#bma-fallback p {
  margin-bottom: 10px;
  color: #555;
  font-size: 0.95rem;
}

.cfc-steps li {
  padding: 12px 10px;
  margin: 10px 0;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.7;
  transition: background 0.3s, color 0.3s;
}
.cfc-steps li.active {
  background: #fff;
  color: #1c5c3a;
  font-weight: bold;
  o
  
/* ================================
   RESPONSIVE
================================= */
@media (max-width: 900px) {
  .bma-container {
    flex-direction: column;
    align-items: stretch;
  }

  #bma-map {
    margin-top: 20px;
    min-height: 300px;
  }

  .bma-left button {
    width: 100%;
  }
}
