/* Wrapper do mapa */
.mapa-wrapper-mariz {
  position: relative;
  margin-top: 80px;
  margin-bottom: 50px !important;
}

.mapa-container-mariz {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  background-color: #eff1f0;
  border-top: none;
  transition: height 0.6s ease, border-top 0.6s ease;
  z-index: 1;
}

.mapa-container-mariz iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%);
}

.mapa-container-mariz.ativo {
  height: 400px;
}

/* Botão da seta */
.mapa-toggle-mariz {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #213a34;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  z-index: 50;
  padding: 0;
  margin: 0;
}

.mapa-toggle-mariz:hover {
  color: #1a2e29;
}

.mapa-toggle-mariz svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.4s ease;
}

.mapa-toggle-mariz.aberto svg {
  transform: rotate(180deg);
}

.mapa-toggle-texto {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #213a34;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}

.mapa-toggle-texto.oculto {
  opacity: 0;
  visibility: hidden;
}
