/* onde-estamos.css - estilos específicos da seção 'Onde Estamos' */
.onde-estamos-section {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f4f8ff;
}

.onde-info {
  background: linear-gradient(180deg, #0b61b8 0%, #075aa8 100%);
  color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.onde-info h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  color: #e6f4ff;
  line-height: 1.05;
}

.onde-info p {
  margin-bottom: 16px;
  color: #dff0ff;
}

.onde-info .form-control,
.onde-info select {
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 12px;
  background: #fff;
  color: #0b3f6d;
  font-weight: 600;
}

.endereco h3 {
  margin-top: 8px;
  margin-bottom: 6px;
  color: #dbeeff;
  font-size: 1.05rem;
}

.endereco p {
  margin: 0;
  color: #dbeeff;
  line-height: 1.4;
}

.botoes {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-wrap: wrap;
}

.botoes .button {
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
}

.botoes .button.button-primary {
  background: #2196f3;
  color: #fff;
  border: none;
}

.botoes .button.button-default-outline-2 {
  background: transparent;
  color: #dbeeff;
  border: 2px solid rgba(255,255,255,0.18);
}

/* Map adjustments */
#map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(11,61,109,0.12);
}

/* Responsivo: empilha no mobile */
@media (max-width: 991.98px) {
  .onde-info {
    margin-bottom: 20px;
  }
}
